0

现在我正在尝试编写一个 andorid 应用程序。并看到以下错误:

http://k1310.hizliresim.com/1g/l/tpvwu.png

这是主要代码:

package com.hayat.goz;

import android.app.Activity;
import android.content.Intent;
import android.content.pm.ActivityInfo;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;

public class Teste_Basla_1 extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.teste_basla_1);
         setRequestedOrientation (ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
        final Button teste_basla = (Button)findViewById(R.id.button1);

         teste_basla .setOnClickListener(new View.OnClickListener() {

                public void onClick(View v) {

                    Intent a = new Intent(Teste_Basla_1.this, Gorme_testi_1.class);

                    startActivity(a);

                    finish();

                }});        

    }

    @Override  
    public void onBackPressed() {

           Intent a = new Intent(Teste_Basla_1.this, MainActivity.class);

            startActivity(a);

               finish();

    }    




}

这是 XML 代码:

<?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" 
    android:background="@drawable/uyarii">

    <Button
        android:id="@+id/button1"
        android:layout_width="90dp"
        android:layout_height="90dp"
        android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true"
        android:layout_marginBottom="54dp"
        android:background="@drawable/testebaslaacilis"/>

</RelativeLayout>

我认为我的应用程序中的图像不足以解析。我不能用 PhotoShop 缩小它们。我应该用编码解决这个问题,但我不知道我该怎么做。

你能给我一些想法吗?谢谢你们...

4

2 回答 2

0

正如错误所说,您的位图大小对于您的设备堆大小来说太大了。看android怎么引导

于 2013-10-18T17:42:26.723 回答
0

看看以下是否有帮助。

http://www.androiddevelopersolution.com/2012/09/bitmap-how-to-scale-down-image-for.html

于 2013-10-18T19:12:37.913 回答