我有这样的布局:
项目.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"/>
我在这样的数组适配器中设置它:
这里数组是String[] array;
adapter.addSection(header, new ArrayAdapter<String>(this, R.layout.items, array));
现在我想以编程方式添加设置颜色、文本大小、自定义字体怎么做?
我知道如何设置颜色、文本大小和自定义字体,但是如何获取这个 textview 的 id?