所以我有一對夫婦的我的應用程序的部分這一問題,但我會堅持一個:如何更改當前不活動的視圖的佈局?
我有一個偏好屏幕,跨應用程序更新字體大小/字體。除了我的聯繫人選擇器之外,它的功能非常好。這是因爲我創造它的方式:
private void populateContactList() {
Cursor cursor = getContacts();
fields = new String[] { ContactsContract.CommonDataKinds.Email.DATA };
adapter = new SimpleCursorAdapter(this, R.layout.entry, cursor, fields,
new int[] { R.id.contactEntryText });
mContactList.setAdapter(adapter);
}
凡R.id.contactEntryText是在不同的.XML比當前充氣一個(它只是適應該佈局)。
當然,我不能強加一個setTextColor();
它,因爲當我嘗試做一個findViewById
,我得到一個空指針異常。
我該如何去改變該佈局上的字體樣式,以便我的列表視圖獲取它?