おそらくあなたの単一のアイテム-あなたのリストを埋めているビューは透明ではありません。つまり、白いtextViewのリストがある場合、リストが透過的であるかどうかは関係ありません。
透明なスタイルテーマを作成します。
res/valuesフォルダーにstyles.xmlを作成します。
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="Theme.Transparent" parent="android:Theme">
<item name="android:windowIsTranslucent">true</item>
<item name="android:windowBackground">@color/transparent</item>
<item name="android:windowContentOverlay">@null</item>
<item name="android:windowNoTitle">true</item>
<item name="android:windowIsFloating">true</item>
<item name="android:backgroundDimEnabled">false</item>
</style>
</resources>
次に、マニフェストに追加します
android:theme="@style/Theme.Transparent"
リストのアクティビティプロパティで