Recent content by Yoyo_Guru

  1. Y

    [Android] Retrieve pixel array after an image is taken

    I am working on an app that needs to access an array of pixels from a picture after it is taken. The main Activity is below. I have a good amount of java experience but extremely limited experience with images past displaying them on the screen. I see the byte array being passed to the picture...
  2. Y

    [Android] Camera App crashes when run

    Yeah thanks, I had read about that before. Never got around to setting it up though. And I'm away from my desktop a lot, so it's just easier to do it in AIDE and transfer the files to my desktop or dropbox when I work in Eclipse.
  3. Y

    [Android] Camera App crashes when run

    Ok, I found the problem. I said in the manifest, <uses-permission android:name="android.permissions.CAMERA" /> it should say android.permission, not android.permissions.
  4. Y

    [Android] Camera App crashes when run

    Here is logcat errors. E( 167) Permission Denial: can't use the camera pid=9354, uid=10009 (CameraService) E( 9354) FATAL EXCEPTION: main (AndroidRuntime) E( 9354) java.lang.RuntimeException: Unable to start activity ComponentInfo{your.Converter/your.Converter.ConverterActivity}...
  5. Y

    [Android] Camera App crashes when run

    Actually I was using AIDE, and ide on the android, it shows logcat but does not have a way of exporting it. I will run app in eclipse when I get home tonight and add stack trace. I was testing on my phone because I did not know how the virtual device in eclipse would deal with the camera.
  6. Y

    [Android] Camera App crashes when run

    I am working on an android application that will need to take and store pictures. I'm familiar with java but not with the Android APIs. I tried to start by just including the functions for taking and saving an image using the information on the android developers page(Camera | Android...
  7. Y

    Java Retrieve Browser state information(Java)

    ok. I'm really not familiar with most webpage/website stuff, have not run across a need to use it before. How do I parse the contents of the page in java? What classes would I use for that?
  8. Y

    Java Retrieve Browser state information(Java)

    My code is in java though. I already wrote the majority of the program in java. Can I call methods from the java program in the function?
  9. Y

    Java Retrieve Browser state information(Java)

    I don't want to alert the user, I want to alert the program, the point is for it to be completely automated without the need for user input once the automation has begun, the user just has to set it up.
  10. Y

    Java Retrieve Browser state information(Java)

    Well I'm already done with most of the code, and I was using a pause for the webpage to load before but that's not the most efficient way. Just don't want to have to start all over again. If I did make a separate javascript program would I be able to have the two communicate or run methods from...
  11. Y

    Java Retrieve Browser state information(Java)

    I've actually been filling the forms using the robot class to simulate key presses, I know its not the best way but I am not familiar with scripts and I wanted it to work with all page types, the program we use now does not work with flash and I want to avoid anything like that popping up. I...
  12. Y

    Java Retrieve Browser state information(Java)

    He said that javascript had those event handlers. Is there a way to include javascript commands or classes in a java program?
  13. Y

    Java Retrieve Browser state information(Java)

    I'd prefer to keep it within the program just for sake of ease and so that others could use it without a hassle. Do you know of a way to include the capabilities mentioned in my original post without having to use another program/plugin?
  14. Y

    Java Retrieve Browser state information(Java)

    I'm working on a program that automatically fills forms out on a website for work. It uses the tab key to navigate the page to the different fields. However I do not know how to make it pause for the browser to load the page other than hardcoding some time into it. Is there a way to determine...
  15. Y

    Java [Java] How do I save a bunch of images as one?

    Its a JScrollPane though. Can't get all of it on screen at once.
Back
Top