1

我是安卓新手 :)

我想创建一个带有数字参数(x)和一个按钮的简单幻灯片。我有 21 个图像,单击按钮时,我想捕捉 x 并“滑动”列表中的前 x 个图像。介于一张图片,下一张我要等待 1 秒。

最后我想知道手术过程中经过了多少时间。(对不起我的英语不好)

在活动和布局的代码下方粘贴:

package com.superpibenchmarknative;

import android.app.Activity;
import android.os.Bundle;
import android.os.Handler;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.EditText;
import android.widget.ImageView;
import android.widget.TextView;



public class ImageActivity extends Activity implements OnClickListener {
private Button start;
private EditText iteractions;
private TextView time;
private ImageView display;
private long after,before;
private int images[] = {R.drawable.image1,R.drawable.image2,R.drawable.image3,
                        R.drawable.image4,R.drawable.image5,R.drawable.image6,R.drawable.image7,
                        R.drawable.image8,R.drawable.image9,R.drawable.image10,R.drawable.image11,
                        R.drawable.image12,R.drawable.image13,R.drawable.image14,R.drawable.image15,
                        R.drawable.image16,R.drawable.image17,R.drawable.image18,R.drawable.image19,
                        R.drawable.image20,R.drawable.image21,
        };
@Override
protected void onCreate(Bundle savedInstanceState) {
    // TODO Auto-generated method stub
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_image);
    setUpUI();
}

private void setUpUI() {
    // TODO Auto-generated method stub
    start = (Button) findViewById(R.id.bntStartCalcolation);
    iteractions = (EditText) findViewById(R.id.etIterations);
    time = (TextView) findViewById(R.id.tvTime);

    start.setOnClickListener(this);
}

@Override
public void onClick(View arg0) {
    //Creo le imageview in base al # di iteractions 
    before = System.currentTimeMillis();
    for (int j = 0; j < Integer.parseInt(iteractions.getText().toString());j++){
        display = (ImageView) findViewById(R.id.ivDisplay);
        display.setImageResource(images[j]);
        Handler handler = new Handler(); 
        handler.postDelayed(new Runnable() { 
             public void run() { 
                  display = null;
                  System.gc();
             } 
        }, 1000); 

    }
    display = null;
    System.gc();
    after = System.currentTimeMillis();
    time.setText(String.valueOf(after-before-1000* Integer.parseInt(iteractions.getText().toString())));
}

}

这是布局:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
tools:context=".ImageActivity" >

<TextView
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_marginBottom="5dp"
    android:layout_marginLeft="15dp"
    android:layout_marginRight="15dp"
    android:layout_marginTop="10dp"
    android:padding="5dp"
    android:text="Benchmark del rendering di immagini" />

<EditText
    android:id="@+id/etIterations"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_gravity="center"
    android:layout_marginBottom="5dp"
    android:layout_marginLeft="15dp"
    android:layout_marginRight="15dp"
    android:layout_marginTop="5dp"
    android:hint="# di iterazioni"
    android:inputType="number"
    android:padding="5dp" />

<Button
    android:id="@+id/bntStartCalcolation"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginBottom="5dp"
    android:layout_marginLeft="15dp"
    android:layout_marginRight="5dp"
    android:layout_marginTop="5dp"
    android:text="Start Calcolation" />

<ImageView  android:id="@+id/ivDisplay"
            android:layout_width="200dp"
            android:layout_height="200dp"
            android:layout_gravity="center"/>

<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
    android:weightSum="100" >

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_margin="15dp"
        android:layout_weight="50"
        android:text="Risultato ottenuto in: " />

    <TextView
        android:id="@+id/tvTime"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_margin="15dp"
        android:layout_weight="50" />
</LinearLayout>

此代码不起作用,它会创建一个异常

OutOfMemoryError:位图大小超出 vm 预算

谁能帮我解决这个问题??:) 非常感谢 :D

一切都很好:D,但我还有一些问题

我不明白为什么时间总是负数!!!你们有谁知道为什么??[postDelayed 不起作用?!?:( ]

解决方法:android.os.SystemClock.sleep(1000);

另一个错误,ImageView 在设置图像后没有改变,有什么建议吗?

4

2 回答 2

0

在 Manifest 文件中将 largeheap 添加到您的应用程序。

<application ... android:largeHeap="true" >

或者,使您的照片更小。您可能有多种尺寸,具体取决于您使用的屏幕尺寸,这将大大降低占用所有内存的可能性。请参阅此页面以查找 Android 屏幕分辨率。

于 2012-12-04T17:56:30.470 回答
0

开发人员站点中有一个关于加载大型位图文件的小指南。这个想法是加载较低分辨率的文件,以便它们适合内存:http: //developer.android.com/training/displaying-bitmaps/load-bitmap.html

于 2012-12-04T17:59:19.167 回答