0
我有一個活動與畫布,它下 - 列表視圖,然後再次畫布。所以我創建了Canvas View,它可以繪製所有必要的圖形。但似乎我不能和列表視圖同時繪製它們是這樣的:Android:繪製畫布視圖和列表視圖?
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<ListView
android:id="@+id/newsList"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
</ListView>
<com.testapp.misc.NewsCanvasView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
></com.testapp.misc.NewsCanvasView>
</LinearLayout>
什麼是嵌入列表視圖到畫布的最好方法? 問題不在每一行繪製,而是在屏幕的背景上。
嘗試使用FrameLayout作爲您的根佈局,並將您的列表視圖背景設置爲null –