I\'m a beginner android/java programmer and my background is primarily in C++ and C#. In C# if I have a string variable called myWord and it has a value of \"Hello\" I can appen
If you are using TextView, use append. For example:
TextView textView = (TextView) findViewById(R.id.myText); textView.setText("Hello"); textView.append(" Bob!");