TextView
以下を1ページにListView
と表示しています。私のコードは次のとおりです。リストビューとテキストビューの両方をアンドロイドの1ページに配置する方法は?
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:id="@+id/widget"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<RelativeLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:id="@+id/widgetlay"
android:layout_height="fill_parent">
<TextView
android:id="@+id/txt1"
android:text=""
android:layout_height="wrap_content"
android:layout_width="fill_parent"
>
</TextView>
</RelativeLayout>
<ListView
android:layout_width="match_parent"
android:id="@+id/listlist"
android:layout_height="0dp"
android:layout_weight="1.0">
</ListView>
</RelativeLayout>
それはリストを展開されていません...私は動的にListView
データを表示しています....が、私のエミュレータでは、上部にTextView
が表示され、その後、スクロールとListView
代わりに、ListView
全体を拡張する方法を教えてください...動的に生成されたコンテンツをスクロールしている....
おかげで事前
すべてをスクロールビューに入れてみてください。 – Ghost
listviewはすでにスクロールを拡張しているので、スクロールビュー内にリストビューを置く必要はありません。 –
@ghost:リストビューをスクロールビューに入れることは非常に禁じられています。 – njzk2