各行に写真があり、写真の下に別の ListView があり、写真に関するコメントがあります。問題は、親 ListView のサイズが原因で、子 ListView が最初の行のみを表示することです。
子ListViewのサイズに応じて親ListViewのサイズを柔軟にする方法はありますか?
私のxmlコード
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/relLayoutMain"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:background="@layout/background"
>
<ListView
android:id="@+id/photoList"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:cacheColorHint="#00000000"
android:footerDividersEnabled="true"
android:paddingTop="5sp" >
</ListView>
</RelativeLayout>
photoList の行レイアウトは次のとおりです。
<?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="wrap_content" >
<ImageView
android:id="@+id/imgView"
android:contentDescription="@string/app_name"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:paddingLeft="10dp"
android:paddingRight="10dp"
android:layout_below="@+id/llUserHeader"
android:adjustViewBounds="true"
/>
<ListView android:id="@+id/commentList"
android:layout_height="fill_parent"
android:layout_width="fill_parent"
android:layout_below="@+id/imgView"
android:cacheColorHint="#00000000"
android:footerDividersEnabled="true"
>
</ListView>
</RelativeLayout>
そして、commentList の行レイアウトは次のとおりです。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:paddingLeft="10sp"
android:paddingRight="10sp"
android:paddingTop="5sp"
android:orientation="horizontal"
>
<TextView
android:id="@+id/usernamecomment"
android:text="@string/share_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="15sp"
/>
<TextView
android:id="@+id/comment"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_marginLeft="3sp"
/>
</LinearLayout>