我想更改列表视图的文本大小和文本颜色。我这样做: + 我在文件夹布局中创建新的 xml 文件(mytext.xml):
<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/text1"
android:paddingTop="2dip"
android:paddingBottom="3dip"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
我改变:
adapter = new ArrayAdapter<String> (this,android.R.layout.mytext,HistoryList);
但是eclipse找不到mytext.xml?