我正在开发一个 Android 项目,我需要在其中设计一个如下图所示的用户界面-
我需要在顶部显示一些文本Student App
,然后在下面会有不同的对象 a Student
。假设如果我有,10 Students
那么10 rows
每个学生都会有。在每一行中,左侧会有图像,然后在中间会有一些文本,然后在右侧会有另一个three text
。
我取得了一些进展,我有以下代码。但这并不完全符合我在图像中寻找的方式。
<ImageView
android:id="@+id/icon"
android:src="@drawable/action_eating"
android:layout_width="60dp"
android:layout_height="60dp" />
<LinearLayout
android:orientation="vertical"
android:layout_gravity="center_vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="15dp" >
<TextView
android:id="@+id/text1"
android:text="test"
android:textColor="#333"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="18sp" />
<TextView
android:id="@+id/text2"
android:text="test2"
android:textColor="#6699CC"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="14sp" />
</LinearLayout>
我需要使该列表可滚动。
谁能帮我解决这个问题?谢谢您的帮助。