1

開発しようとしているアプリに少し問題があります。それはほんの少しのカメラアプリです。

それが私がやりたいことです:...写真を撮って保存します。別のアクティビティを開始し、画像を画像ビューにロードします(したがって、画像パスを保存するので、BitmapFactory.decodeFile(picutrepath)を使用してbmpをロード/作成できます)...

しかし、それはうまくいきません。画面が真っ暗になり、xmlも読み込まれていません。「drmファイルが正常に開かない」というSystem.outが常に表示されますが、それがBitmapFactoryを介して画像をロードしようとしたことに関連しているかどうかはわかりません。Log.iを使用して、使用しているパスに問題がないかどうかを確認しましたが、すべて問題ありません。そこで、R.drawablesから単純な.png画像をロードできるかどうか試してみることにしましたが、それもうまくいきません。不思議なことに、画面が真っ暗になった後、アプリはエラーなしで終了/終了します。

誰かが私を助けてくれることを願っています、ありがとう:)

コードは次のとおりです。

2番目のアクティビティを開始する方法:

.
.
.
takepictureButton = (ImageButton) findViewById(R.id.cameralayout_takepictureButton);
        takepictureButton.setOnClickListener(new ImageButton.OnClickListener() {
            @Override
            public void onClick(View arg0) {
                // TODO Auto-generated method stub
                camera.takePicture(shutterCallback, rawCallback, jpgCallback);
                try {
                    Thread.sleep(2000);
                } catch (InterruptedException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                }
                Log.i("", "Starting INTENT");
                intentstart();

            }
        });
.
.
.
private void intentstart() {
        // TODO Auto-generated method stub
        Intent intent = new Intent(this, FacebarActivity.class);
        startActivity(intent);

    }
.
.
.

始めたいアクティビティ:

public class FacebarActivity extends Activity {

    private ImageView imageview;
    private ImageButton cButton, xButton;
    private Bitmap picture;

    public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.pictureview);

    ImageView imageview = (ImageView) findViewById(R.id.pictureviewLayout_pictureView);

    picture = BitmapFactory.decodeResource(getResources(),
            R.drawable.buttonplay);
    imageview.setImageBitmap(picture);

    cButton = (ImageButton) findViewById(R.id.pictureviewLayout_CButton);
    cButton.setOnClickListener(new ImageButton.OnClickListener() {
        @Override
        public void onClick(View arg0) {
            // TODO Auto-generated method stub

        }
    });
    XButton = (ImageButton) findViewById(R.id.pictureviewLayout_XButton);
    XButton.setOnClickListener(new ImageButton.OnClickListener() {
        @Override
        public void onClick(View arg0) {
            // TODO Auto-generated method stub

        }
    });
    startthis();

}

そして、setContentView()でロードするpictureview.xml:

<RelativeLayout 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=".CameraActivity" >

<RelativeLayout
    android:id="@+id/pictureviewLayout_topbarlinearlayout"
    android:layout_width="fill_parent"
    android:layout_height="75dp"
    android:layout_alignParentTop="true"
    android:background="@drawable/topbar" >
</RelativeLayout>

<ImageView
    android:id="@+id/pictureviewLayout_pictureView"
    android:layout_width="fill_parent"
    android:layout_height="match_parent"
    android:layout_above="@+id/pictureviewLayout_bottombarlinearlayout"
    android:layout_below="@+id/pictureviewLayout_topbarlinearlayout" />

<RelativeLayout
    android:id="@+id/pictureviewLayout_bottombarlinearlayout"
    android:layout_width="fill_parent"
    android:layout_height="75dp"
    android:layout_alignParentBottom="true"
    android:background="@drawable/bottombar" >

    <ImageButton
        android:id="@+id/pictureviewLayout_CButton"
        android:layout_width="150dp"
        android:layout_height="wrap_content"
        android:layout_alignTop="@+id/pictureviewLayout_XButton"
        android:layout_centerHorizontal="true"
        android:background="@android:color/transparent"
        android:src="@android:drawable/ic_menu_camera" />

    <ImageButton
        android:id="@+id/pictureviewLayout_XButton"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerVertical="true"
        android:layout_marginRight="24dp"
        android:layout_toLeftOf="@+id/pictureviewLayout_CButton"
        android:background="@android:color/transparent"
        android:src="@android:drawable/ic_notification_clear_all" />
</RelativeLayout>

そしてlogcat:

01-23 20:47:00.995: D/dalvikvm(7776): GC_FOR_ALLOC freed 69K, 6% free 12160K/12931K, paused 18ms, total 19ms
01-23 20:47:00.995: I/dalvikvm-heap(7776): Grow heap (frag case) to 12.841MB for 432016-byte allocation
01-23 20:47:01.020: D/dalvikvm(7776): GC_CONCURRENT freed <1K, 6% free 12581K/13383K, paused 12ms+1ms, total 25ms
01-23 20:47:01.055: D/dalvikvm(7776): GC_FOR_ALLOC freed 0K, 6% free 12581K/13383K, paused 18ms, total 18ms
01-23 20:47:01.055: I/dalvikvm-heap(7776): Grow heap (frag case) to 13.573MB for 768016-byte allocation
01-23 20:47:01.085: D/dalvikvm(7776): GC_CONCURRENT freed 0K, 6% free 13331K/14151K, paused 12ms+2ms, total 27ms
01-23 20:47:01.085: D/dalvikvm(7776): WAIT_FOR_CONCURRENT_GC blocked 11ms
01-23 20:47:01.105: D/dalvikvm(7776): GC_FOR_ALLOC freed 424K, 9% free 12913K/14151K, paused 14ms, total 14ms
01-23 20:47:01.120: D/dalvikvm(7776): GC_CONCURRENT freed <1K, 6% free 13335K/14151K, paused 2ms+1ms, total 18ms
01-23 20:47:01.120: D/dalvikvm(7776): WAIT_FOR_CONCURRENT_GC blocked 2ms
01-23 20:47:01.140: D/dalvikvm(7776): GC_FOR_ALLOC freed 0K, 6% free 13335K/14151K, paused 20ms, total 20ms
01-23 20:47:01.145: I/dalvikvm-heap(7776): Grow heap (frag case) to 14.309MB for 768016-byte allocation
01-23 20:47:01.160: D/dalvikvm(7776): GC_CONCURRENT freed 0K, 6% free 14085K/14919K, paused 3ms+1ms, total 19ms
01-23 20:47:01.330: D/libEGL(7776): loaded /system/lib/egl/libEGL_mali.so
01-23 20:47:01.355: D/libEGL(7776): loaded /system/lib/egl/libGLESv1_CM_mali.so
01-23 20:47:01.355: D/libEGL(7776): loaded /system/lib/egl/libGLESv2_mali.so
01-23 20:47:01.380: D/(7776): Device driver API match
01-23 20:47:01.380: D/(7776): Device driver API version: 10
01-23 20:47:01.380: D/(7776): User space API version: 10 
01-23 20:47:01.380: D/(7776): mali: REVISION=Linux-r2p4-02rel0 BUILD_DATE=Tue Oct 16 15:37:13 KST 2012 
01-23 20:47:01.440: D/OpenGLRenderer(7776): Enabling debug mode 0
01-23 20:47:02.040: I/Choreographer(7776): Skipped 46 frames!  The application may be doing too much work on its main thread.
01-23 20:47:09.230: I/APPLICATION(7776): STARTIng INTENT
01-23 20:47:09.235: I/Kurz bevor(7776): null
01-23 20:47:09.290: I/APPLICATION(7776): STARTED INTENT
01-23 20:47:09.290: I/Choreographer(7776): Skipped 308 frames!  The application may be doing too much work on its main thread.
01-23 20:47:09.605: D/dalvikvm(7776): GC_CONCURRENT freed 836K, 10% free 13905K/15367K, paused 1ms+2ms, total 12ms
01-23 20:47:09.605: D/dalvikvm(7776): WAIT_FOR_CONCURRENT_GC blocked 4ms
4

0 に答える 0