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

Search results

  1. hyungjungsoh

    Apps android sqlite union, how to retrive results from the tables?

    I have this SQLite query: Cursor orgiCursor = orgiDb.rawQuery("select task,taskDate from meeting where exists (select `meeting.taskId from Task, meeting where meeting.taskId = Task.taskId and task.name='"+profName+"') UNION SELECT subject,date from taskDeadline where exists (select...
  2. hyungjungsoh

    Apps Calling an Activity from a customDialog.

    I guess this is just a simple question (I'm such a noob...) I have this custom dialog box that has 3 buttons in it. Now I want to call an activity from one of the buttons so I tried this: public class picturedialog extends Dialog implements OnClickListener { Button Camera; public...
  3. hyungjungsoh

    Apps translate animation help!

    Okay... I just tried translate animation today... Here's what I want to happen. Imageview moves from point A to point B after that the imageview has to stick to point B. Okay, so I got the part where the imageview goes from point A to point B, HOWEVER, the imageview would not stick to point B...
  4. hyungjungsoh

    Apps Code to hide the Chinese suggestions when the user enters text on the editText?

    Is there such a code to hide the Chinese suggestions when the user enters text on the editText? I was able to find the code for hiding the virtual keyboard using: InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE)...
  5. hyungjungsoh

    Apps Can someone tell me how to run these commands in Ubuntu?

    Okay! Before you persecute me for asking in the wrong forum, I still want to ask, can someone translate this batch file for me? I was a windows user, and just recently I installed ubuntu 10.10 on my new laptop. I am fairly new to this OS. I created this batch file in windows to hasten the...
  6. hyungjungsoh

    Apps emulator: ERROR: the user data image is used by another emulator. aborting

    Hello. I'm here again. :) My emulator is running really slow so I removed the boot screen through -no-boot-anim... Now it's good, and usable. Someone suggested (and I did read it from other websites) that I shouldn't close the emulator after testing my app. Now, I did just that. However...
  7. hyungjungsoh

    Apps The emulator is not showing the correct output. Am I doing it right?

    I'm new to android so I followed the basic hello world tutorial found here but then after hitting "run", all I see is the emulator that says "android"... Here's a screen shot: There were no errors so I assumed it's going to work. :confused: Can someone help me?