Android - Изменения в "Style.xml" для размера шрифта Listview - PullRequest
1 голос
/ 23 сентября 2010

Я определил стиль для "TabWidget", как показано ниже:

<style name="MyTheme" parent="@android:style/Theme.Light">
        <item name="android:tabWidgetStyle">@style/LightTabWidget</item>
</style>

<style name="LightTabWidget" parent="@android:style/Widget.TabWidget">
            <item name="android:textSize">12px</item>
</style>

В котором я устанавливаю размер шрифта 12px для шрифта TabWidget Indicator (title).

Теперь моя проблема: тот же способ модификации стиля Tabwidget, Я хочу изменить стиль для Listview для увеличения / уменьшения размера шрифта. Я знаю, что мы можем изменить размер шрифта для списка, определив пользовательский макет для списка. Но если есть возможность сделать это с помощью styles.xml, пожалуйста, помогите мне и дайте мне знать.

1 Ответ

2 голосов
/ 23 сентября 2010

AFAIK, по умолчанию tab_indicator.xml имеет атрибут style.но для макета ListView по умолчанию simple_list_item_1.xml его нет.так что это невозможно.Но вы можете добиться этого с помощью специального адаптера для ListView.

Редактировать: Вы можете использовать только пользовательский адаптер для настройки элемента списка.Он упоминается в документации ArrayAdapter .

Из документации:

A ListAdapter that manages a ListView backed by an array of arbitrary objects. By default this class expects that the provided resource id references a single TextView. If you want to use a more complex layout, use the constructors that also takes a field id. That field id should reference a TextView in the larger layout resource. However the TextView is referenced, it will be filled with the toString() of each object in the array. You can add lists or arrays of custom objects. Override the toString() method of your objects to determine what text will be displayed for the item in the list. To use something other than TextViews for the array display, for instance, ImageViews, or to have some of data besides toString() results fill the views, override getView(int, View, ViewGroup) to return the type of view you want.

...