我想改變 listview 中的 text 大小和 text 顏色。我在 folder layout 中創建了新的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,這是為什麼呢?
應該是R.layout.mytext,你導入的R文件的包錯了
R文件導入的包應該是你應用的包 注意別導入android.R了 這個是系統包