我希望listView
部分滚动到我想要设置一些项目的透明textView
下。
但listView
区域只是textView
区域的边界。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<ImageView
android:id="@+id/appLogo"
android:layout_width="match_parent"
android:layout_height="35dp"
android:background="#00000000"
/>
<ListView
android:id="@+id/listView1"
android:layout_width="match_parent"
android:layout_height="match_parent"
>
</ListView>
</LinearLayout>