2

高さを設定しているため、 onScrollListViewイベントが短くて画面全体を埋めていない場合、これは奇妙です。fill_parent私のレイアウト:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/bg_login_screen3"
android:orientation="vertical" >



<CheckBox
    android:id="@+id/overview_allcars_checkbox"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:gravity="center"
    android:text="@string/all_cars"
    android:textSize="14sp" />

<LinearLayout
    android:id="@+id/list_root"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <ListView
        android:id="@+id/android:list"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_weight="1"
        android:cacheColorHint="#00000000"
        android:fadingEdge="horizontal"
        android:scrollingCache="true" />
</LinearLayout>
</LinearLayout>
4

1 に答える 1

0

この回答は役に立つかもしれません:-

Android で TextView をスクロール可能にする

それが私を助けてくれました:

<ScrollView
android:id="@+id/SCROLLER_ID"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:scrollbars="vertical"
android:fillViewport="true">

    <TextView
    android:id="@+id/TEXT_STATUS_ID"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_weight="1.0"/>

</ScrollView>

主に、TextView を ScrollView にラップします。

于 2012-12-20T17:10:43.527 に答える