我有一个列表视图,它使用自定义适配器来显示我的自定义内容。它的布局如下。
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1">
<ImageView
android:id="@+id/itemimage"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="5"
android:scaleType="fitCenter"/>
<TextView
android:id="@+id/itemdescription"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="10dp"
android:textSize="16sp"
android:layout_weight="1"/>
</LinearLayout>
<TextView
android:id="@+id/itemtext"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="TEXT CONTENT"
android:layout_weight="1"/>
</LinearLayout>
我希望列表视图只显示带有 ids itemimage 和 item description 的视图,保持 itemtext 隐藏。这个想法是在列表的每个项目上都有一个 onclicklistener,以便扩展该项目,以便显示 itemtext 内容。我知道我应该使用补间动画来展开/折叠每个项目,但我不知道该怎么做。
有人可以帮我吗?如果您需要更多代码片段,请随时提出。
提前致谢。