主题样式不适用于自定义ListView项目

时间:2014-09-09 00:22:16

标签: android listview styles themes

我想为我的应用构建主题。但似乎我的LiestView项目不适用这些值。

这是styles.xml:

<style name="AppTheme" parent="android:Theme.Holo.Light">
    <item name="android:textViewStyle">@style/TextView</item>
</style>
    <style name="TextView" parent="android:Widget.TextView">
        <item name="android:layout_margin">8dp</item>
        <item name="android:padding">0dp</item>
        <item name="android:textColor">#87000000</item>
        <item name="android:textSize">18sp</item>
    </style>

在我的活动中,我使用Listview和自定义适配器,但我的item.xml中的T​​extViews没有余量:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:clickable="true"
    android:orientation="vertical"
    tools:context="de.resper.enigma2chromecast.mainLive" >
    <TextView
        android:id="@+id/channelName"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center_vertical"
        android:text="@string/hello_world" />
    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="@string/hello_world"
        android:id="@+id/channelLine1"/>
    <View
        android:layout_width="match_parent"
        android:layout_height="1dp"
        android:background="@android:color/darker_gray" />
</LinearLayout>

1 个答案:

答案 0 :(得分:0)

你设计的xml是什么,在应用程序主题中放入android清单文件

<application android:theme="@style/CustomTheme">