0

リストビューのテキストサイズとテキストカラーを変更したい。+ フォルダー レイアウトに新しい 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 を見つけることができませんか?

4

1 に答える 1

2
adapter = new ArrayAdapter<String> (this, android.R.layout.mytext, HistoryList);

上記の行で、 の 2 番目のパラメータはandroid.R.layout.mytextではなくR.layout.mytextArrayAdapterにする必要があります。

于 2012-08-21T04:09:16.490 に答える