I just want to add a new line somehow to my linear layout:
layout = (LinearLayout) findViewById (R.id.layout); ... //some other code where I\'ve appended
Simple as:
String hello = getResources.getString(R.string.hello); String world = getResources.getString(R.string.world); textView.setText(hello + "\n" + world);