PairScrollView icon indicating copy to clipboard operation
PairScrollView copied to clipboard

TitleBar的问题

Open icafe opened this issue 9 years ago • 1 comments

如果有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>

icafe avatar Dec 15 '15 08:12 icafe

我尝试了一个方法,就是在<PairScrollView/>外在包裹一个布局

longhunpeter avatar Jan 15 '16 08:01 longhunpeter