私はレイアウトを持っていて、残りの部分をウェイトで塗りつぶしています。 Listviewは完全に機能します。レイアウト内のネストされたウェイト
最後の2つのボタンは、私が意図した通りに動作しますが、「ネストされた重みはパフォーマンスに悪い」という警告が表示されます。
リストビューを削除すると警告が消えてしまったので、私は既にリストビューの重みパラメータを使用していたので、問題だと思います。
<?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="fill_parent"
android:orientation="vertical" >
<ListView
android:id="@+id/listMessages_messages"
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_marginBottom="5dip"
android:layout_marginLeft="10dip"
android:layout_marginRight="10dip"
android:layout_marginTop="10dip"
android:layout_weight="1"
android:background="#000000" >
</ListView>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<Button
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="50"
android:visibility="invisible" />
<Button
android:id="@+id/btnNewConversation_message"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginRight="5dip"
android:layout_weight="50"
android:onClick="newConversation"
android:text="@string/NewConversation" />
</LinearLayout>
</LinearLayout>
これで何が欲しいのですか? –
私は何が間違っていたのか知りたいです。 a.k.a.警告の原因私はこれをソリューションの近くにある私のアプリケーション –