簡體   English   中英

分頻器在我的列表視圖中不起作用

[英]Divider not working in my listview

我正在嘗試在我的簡單列表視圖中使用梯度除法器。 但這根本行不通。

布局xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    android:id="@+id/main_layout"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@drawable/wood_small"
    android:padding="5dip" xmlns:android="http://schemas.android.com/apk/res/android">

    <ImageView android:layout_width="wrap_content"
        android:layout_height="wrap_content" 
        android:id="@+id/masthead_image" android:layout_gravity="center_horizontal" 
        android:src="@drawable/tavi_mh_copy">
    </ImageView>

    <ListView  android:id="@+id/station_list" 
        android:layout_height="fill_parent" android:layout_width="fill_parent"
        android:divider="@drawable/black_white_gradient" android:dividerHeight="2px">
    </ListView>

</LinearLayout>

分頻器Xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">
  <gradient
      android:startColor="#00222222"
      android:centerColor="#FFFFFFFF"
      android:endColor="#00222222"
      android:angle="0" />
</shape>

解決了此問題。不確定是否能正常工作,但我重新創建了相同的布局並開始工作。 也許這是星星的位置或其他東西。

謝謝大家,Droidment

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM