PairScrollView
PairScrollView copied to clipboard
TitleBar的问题
如果有TitleBar在PairScrollView上面,好像无法判断滚动到底部? 请问这种问题如何解决呢?
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<include
layout="@layout/title"
android:id="@id/title_bar" />
<me.angeldevil.pairscrollview.PairScrollView
android:layout_below="@id/title_bar"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<WebView
android:id="@id/webview"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />
<ListView
android:id="@id/list_view"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:divider="@null" />
</me.angeldevil.pairscrollview.PairScrollView>
</RelativeLayout>
我尝试了一个方法,就是在<PairScrollView/>外在包裹一个布局