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

Search results

  1. A

    Apps Eclipse, android sdk tools(rev. 20) and android sdk platform-tools(rev. 12) update and no keyboard e

    Recently(August 2012) I did the topic title update and now the emulator will not accept input from the computer keyboard, or emulator keyboard, only the emulator 'popup keyboard' anyone else do a recent update and have the same issue ?? When I pass the mouse over the emulator keys they no...
  2. A

    Apps catching and stoping a one decimal point error ?

    Alright how does one catch and stop a one decimal point error ? The user inputs a single . and that is all; you can not allow that because you will be doing math with that input.if you have this in your xml file: <EditText android:id="@+id/edittext01"...
  3. A

    Apps Format textview in code?

    How do you format a textview?: Let say I have 4 float variables x input from user y input from user z input from user a output from program a = ((x *y) / z); a = a * 1000; this works but is not formatted: TextView.setText(String,valueOf(a)); so if x = 1, y = 2, and z = 12; a will =...