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

Search results

  1. luka1995

    Bluetooth inputStream Receive problem

    Hi, I am using bluetooth socket and i have problem when use inputstream for reading bytes... Problem its here: when i call function inputStream.read(buffer, -1, 5); or inputStream.read(buffer);... myTimerSend = new Timer(); //final byte[]...
  2. luka1995

    How to make loading layout 2sec?

    Hi, i want to create loading layout and i don't know how... private View controlView; private View loadingView; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); LayoutInflater inflater =...
  3. luka1995

    Read Text from other layout?

    I have problem, It's possible read text from other layout? I insert greenText = (EditText) findViewById(R.id.green_text); and Code for read from other layout and don't work... I want to read text from other java file (is not activity)! Maybe anyone know?
  4. luka1995

    TCP or UDP IP Connection example???

    Hi, i am searching for TCP or UDP IP connection tutorial, example and i can't found good example... I want to sending text on tcp ip like this: Win7 - Android TCP/IP Connection Demo - YouTube or something similar... Maybe who have can help me, have example? Thank you
  5. luka1995

    How to use function BACK BUTTON on phone?

    HI, i want to use back button... When you click back button going back to layout main. please help bye
  6. luka1995

    Android toast delay 10sec function

    Hi, I am creating my application for android phone and i use toast function, it's possible to make delay for toast 10 seconds? that is my code for toast: case R.id.connect: Toast.makeText(this, "12345", Toast.LENGTH_LONG).show(); break; thanks
  7. luka1995

    Android application open browser and URL

    Hi from Slovenia, I have one question. I am using JAVA Eclipse for programming android 2.2 application. I want to make when you run application open browser and URL link. It's possible to make this? thank you for help... Bye