您好我有imageview的文字标题,描述和评级,后跟名单。所以我放置了scrollview,因为如果文本太长而无法滚动和查看。但我无法处理列表视图,只能隐藏一个项目。我的代码如下:
<?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:orientation="vertical" >
<Scrollview
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="5dp" >
<FrameLayout
android:layout_width="match_parent"
android:layout_height="180dp"
android:layout_gravity="center_horizontal" >
<ProgressBar
android:id="@+id/progressBar1"
style="?android:attr/progressBarStyleLarge"
android:layout_width="50dp"
android:layout_height="50dp"
android:layout_gravity="center" />
<ImageView
android:id="@+id/image_of_movie"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="center_horizontal"
android:contentDescription="@string/app_name"
android:padding="8dp"
android:src="@drawable/images" />
</FrameLayout>
<TextView
android:id="@+id/name_of_movie"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:textStyle="bold" />
<ListView // problem occurs here displaying only one item where others hide
android:id="@+id/cast_details"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<TextView
android:id="@+id/synopsis"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
/>
<RatingBar
android:id="@+id/rating"
android:layout_marginTop="10dp"
android:layout_width="wrap_content"
android:numStars="10"
style="?android:attr/ratingBarStyleSmall"
android:layout_height="wrap_content"
android:isIndicator="true" />
<TextView
android:id="@+id/ratingText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_marginTop="20dp"
android:text="Rating: "/>
</LinearLayout>
</Scrollview>
当我删除ScrollView时,所有项目都在列表视图中以扩展形式显示,但列表视图下方的其他文本被隐藏。
如何解决这个问题?
提前致谢。