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

Search results

  1. B

    Apps How to use the strings from resource?

    Hi everyone, I have a problem, when I want to use the strings from string.xml. I tried something like this: int result = 1; String mystr = "some text" + result + R.string.myresstring; But in the new string mystr is not the String from R.string.myresstring, there is the integer id from the...
  2. B

    Apps App should not change to landscape, but how?

    Hi there, I would like to know how I can say my application, that it does not change the orientation, when the user rotates the phone or switches out the keyboard. The application should only run in the normal View, but how can I realize this ? I did not found anything about it! Thanks in advance
  3. B

    Anstop

    Hey, the last days, I developed a Application for Android called Anstop. It is a little stopping watch with a Lap and Countdown Mode. It would be nice if anyone would test this app a bit. You can install it with the adb tool from the Android sdk. Just connect your phone and type adb install...
  4. B

    Apps Settings Dialog

    Hi there, I have another Problem, I want to create a settings Dialog in my app. The settings Dialog should pop up when the user "clicks" on a menu entry in the Menu. But I cannot find any example or a tut to create such a settings Dialog. I hope you know what I mean. The same Settings DIalog...
  5. B

    Apps Threads in Android?

    Hello, at first sorry for my bad Englisch, I am coming form Germany ;D. Okay, i have a problem with a Thread in Android, I want to make a stopping watch. So my first try was to make a thread which refreshs a TextView every second. But when i call TextView.setText("str"), the program always...