• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Search results

  1. C

    Apps Why my application keep crashing on my device ?

    What the application should do is to save some recording on the device and then show it in a videoView . This is the java file: package com.example.cameravideopreview; import java.io.IOException; import android.media.CamcorderProfile; import android.media.MediaRecorder; import...
  2. C

    Apps Im trying to use my HTC camera on my pc Eclipse but im getting errors:

    This is the content of the file: MainActivity.xml package com.example.camera_test;import android.os.Bundle;import android.annotation.SuppressLint;import android.app.Activity;import android.content.Intent;import android.hardware.Camera;import android.view.Menu;import android.view.View;import...
  3. C

    Apps Trying to play video file on my android device but getting error "Cannot play video"

    Im using Eclipse created new android project. First thing i added to the menifest xml file two lines: < uses-permissionandroid:name="android.permission.INTERNET"></uses-permission> <uses-permissionandroid:name="android.permission.STORAGE"></uses-permission> And this is the complete menifest...