我想在android中创建透明列表视图。我使用了许多代码,但这些代码无效。我的代码如下。
<ListView
android:id="@+id/list"
android:cacheColorHint="#00000000"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1"/>
这是我项目的列表视图代码。此代码正在运行,但它不显示透明列表视图。所以请建议我。
答案 0 :(得分:1)
试试这个,
android:background="@android:color/transparent"
或
android:background="#00000000"
android:cacheColorHint="#00000000"
答案 1 :(得分:0)
我不知道这是否真的有用。但我希望它会对你有帮助。
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/root_frame"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@android:color/transparent">
<ListView
android:id="@android:id/list"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:divider="#fff"
android:dividerHeight="0sp"
android:cacheColorHint="#00000000"
android:descendantFocusability="afterDescendants"
android:paddingTop="@dimen/padding_10px"
/>
</RelativeLayout>