をリストをスクロールするビューをスクロールを取得することはできません:私はそれを行うには期待していた何アンドロイド - 私はこの非常に基本的なビュー持つ正しく
<?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"
>
<TextView
android:id="@+id/question_label"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Your question: "
/>
<TextView
android:id="@+id/question"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text=""
/>
<EditText
android:id="@+id/question_text"
android:layout_height="wrap_content"
android:hint="@string/question_comment_hint"
android:inputType="textMultiLine"
android:lines="4"
android:layout_width="fill_parent">
</EditText>
<Button
android:id="@+id/submit"
android:layout_height="wrap_content"
android:text="@string/submit"
android:onClick="sendFeedback"
android:layout_width="fill_parent">
</Button>
<ScrollView
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<TextView
android:id="@+id/please_wait"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Please wait while the discussion loads..."
/>
<ListView
android:id="@android:id/list"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@+id/label"
android:textSize="20px" >
</ListView>
</LinearLayout>
</ScrollView>
</LinearLayout>
は、ユーザーが全体のリストをスクロールできるようにすることですコメント。現時点では、画面上にスペースがあれば、画面はさらにスクロールしません。
コメントのスクロールを有効にするために何を変更する必要がありますか?
ありがとうございます!
これは問題ではありませんが、Androidのスクロールビューではリストビューを使用しないでください。 – coder
@coderどうして?あなたが正しいです。私が何をしようとしても、それは私にとってはうんざりするものです。どのようにこの種のページを整理しますか? – GeekedOut
リストビューは正確には何ですか?すべてのコメント? – coder