i have a layout like this:
items.xml:
<TextView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/item_title"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:paddingLeft="15dip"
android:textSize="24sp"/>
i am setting this in Array adapter like this:
here array is String[] array;
adapter.addSection(header, new ArrayAdapter<String>(this, R.layout.items, array));
Now i want to add set color, textsize, custom font progrmatically how to do it?
I know how toset color, textsize and also custom font but how to get the id of this textview?