gpt4 book ai didi

android - 在 Listview Android 中添加图像

转载 作者:行者123 更新时间:2023-11-29 14:36:14 24 4
gpt4 key购买 nike

我正在 android 中创建一个学生详细信息应用程序。我需要在顶部显示学生的照片,并将姓名、卷号、地址等显示为表格。我在顶部添加了 ImageView ,在 ImageView 下方添加了 ListView 。我可以在 ListView 中添加图像吗(现在图像不可滚动)。

Activity .xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/res-auto"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">

<ImageView
android:id="@+id/img"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/def"
android:layout_centerHorizontal="true"
android:layout_gravity="center_horizontal"/>

<ListView
android:id="@id/list"
android:layout_above="@+id/ad_view"
android:layout_width="fill_parent"
android:layout_height="match_parent" >
</ListView>

</LinearLayout>

Activity .java

        list = (ListView) findViewById(R.id.list);
ArrayList<HashMap<String, String>> productsList;
productsList = new ArrayList<HashMap<String, String>>();


/*
adding data from database to productsList

*/



ListAdapter adapter =
new SimpleAdapter(this, productsList, R.layout.full, new String[]{"left", "right"},
new int[]{R.id.left, R.id.right});

list.setAdapter(adapter);

完整的.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:gravity="center"
android:background="@drawable/background_border"
android:padding="15dp"
>
<TextView
android:id="@+id/left"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:text="cnsdsdsf:"
android:layout_weight="1"
android:gravity="center"
/>
<TextView
android:id="@+id/right"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:text="TextView"
android:layout_weight="1"
android:gravity="center"
/>
</LinearLayout>

最佳答案

你可以使用ImageView imageView = new ImageView(this);
listView.addHeaderView(imageView);
在listview的头部添加一个imageView

关于android - 在 Listview Android 中添加图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37509588/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com