我正在嘗試更改我的字體(顏色和大小)以及我的ListView上的背景。我想用不在xml上的代碼行來改變它。 我的列表視圖看起來像: 的XML:如何更改ListView上的顏色和字體
<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="10dp"
android:textSize="18sp" android:text="@string/hello">
</TextView>
和我的代碼是
public class NewsActivity extends ListActivity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// ArrayAdapter listItemAdapter = new ArrayAdapter(this,android.R.layout.simple_list_item_1, v_itemList);
setListAdapter(new ArrayAdapter<String>(this, R.layout.list_item,ynetList));
View v=getListView() ;
ListView lv = getListView();
何去何從?請給我一個例子基礎上,我的代碼
您是否嘗試在列表創建時設置顏色和大小?或者在創建列表後將它做到特定的孩子? – blessenm
我想在創建它們之前更改顏色和大小。 I \t int childCount = lv.getChildCount();但得到0.如何修復它 –