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

Search results

  1. powerpoint45

    [GAME 2.2+] Maze Obstacle Action Game of Doom

    Hello Android Forums! If anyone is interested, check out this game I made Download (5.47MB ) https://play.google.com/store/apps/details?id=com.powerpoint45.maze The objective of this game is to move through a level to the green bricks without getting hit by the red projectiles. You are the...
  2. powerpoint45

    Apps How to make an easy root app

    Ok, I just realized how to make a root app really easy. I just found out that android has a command equivalent to sudo. The command is su -c then the command. Lets say you are making an app that reboots your phone. This is all you need to do: try { Runtime.getRuntime().exec("su -c...
  3. powerpoint45

    Apps need help changing bitmap from child class

    I need a child class to draw a bitmap given by the parent.Right now, in the child it has: Bitmap background; and C.drawbitmap... I need to find a way to change the bitmap from the parent by doing: background = BitmapFactory.decodeResource(getResources(), R.drawable.background); .....so how...
  4. powerpoint45

    (guide)How to remove apps from the "not installed" list from the android market

    I am a bit paranoid about these things. I had 1 app in my "not installed" section,and it was bothering me a ton, so I did some exploring. This is a quick guide that will show you how to remove apps listed in the "not installed" list even after clearing data does not work. I tested this on my...
  5. powerpoint45

    Apps need help changing image on button

    In my xml layout I have a button and an image inside the button to the right.I used: android:drawableRight="@drawable/checkmark Let's say I want to change the image to an X and my button in my java code is named button1.How whould I change the image?I know how to change the background using...
  6. powerpoint45

    Apps recomendation for the best library to make games

    I'm wondering what most android games use.I currently use canvas but I'm not sure what other libraries would be good?
  7. powerpoint45

    Apps (q)saving data

    Hello, i was trying to write to a text file in the raw folder inside my project, but found out you cant. After that i made it write to the sdcard and that worked. I was wondering how most games keep score data and that stuff.is there a location where data is saved to such as a cache folder.could...
  8. powerpoint45

    Apps (q)force closes when i try to write to file

    I need to write text to backgroundcache.text in the folder sdcard/spinlauncher, but when I run the code it force closes and on log cat it says "failed binder transaction" try { OutputStreamWriter cache = new...
  9. powerpoint45

    Root Droid 1 will not install cynagen mod need help again

    Sorry for posting another thread,but i cant install cynagenmod on my droid.my wifi on Chevy mod started to not detect any connections at all so i just wanted to get a new Rom.I have tried these apps to install it :Rom manager and Rom toolbox.when i flash the cynagenmod update.zip it just turns...
  10. powerpoint45

    ROMs bricked droid1 need help

    I didn't completely brick my droid.I was trying to fix the wifi on chevy mod.I deleted the dalvic catch folder in root dir.I want to install cynagenmod.zip.When i turn the phone on it says Bootloader 2c.7c Battery OK OK to Program Connect to program Connect USB Data cable...
  11. powerpoint45

    Apps (q) my application wont work unless i click on it from another launcher

    Ive gotten pretty far on my own launcher.I used this code to make it so when you click home your launcher appears: <activity android:label="@string/app_name" android:name=".yourclassname.java" > <intent-filter > <action android:name="android.intent.action.MAIN" /> <category...
  12. powerpoint45

    Apps custom launcher/ homescreen

    I'm not going to make this too complicated so what I want to do is make it so that when I click the home button my application runs/ the dialog with list of launchers appear with my app listed.I think I just need to make an intent that is the same with the launcher in the manifest.xml code but...
  13. powerpoint45

    Apps help on custom launcher

    I'm going to make my own launcher such as go launcher and I need to know one thing. How do I make it so when you click home it goes to my launcher.My guess is that I need an intent that is the same as the default launcher,But I don't know what the intent is... please help...thank you