gpt4 book ai didi

android - 将图像添加到 Android ListView 的简单方法

转载 作者:太空宇宙 更新时间:2023-11-03 12:40:33 25 4
gpt4 key购买 nike

我有一个要添加图像的 lisview。我早期发现的示例显示使用 simple_list_item_1,但它似乎不允许我想要的。

如果可能的话,我还希望能够独立地更改项目的颜色。所以 One 的文本将是红色的,Two 是蓝色的,等等。

主.xml:

<?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="fill_parent"
android:orientation="vertical">

<TextView android:id="@+id/textHeader"
android:textSize="24px"
android:textColor="#006699"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center_horizontal"
/>
<ListView
android:id="@android:id/list"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
<TextView android:id="@android:id/empty"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Empty set"
/>
<TextView
android:id="@+id/status_text"
android:layout_width="fill_parent"
android:layout_height="0dip"
android:layout_weight="1"
/>
</LinearLayout>

主.java

public class sGuide extends ListActivity {
private String[] mBooks = new String[]{ "One", "Two", "Three" };


/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);

ArrayAdapter<String> booksAdapter = new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, mBooks);

this.setListAdapter(booksAdapter);
}

@Override
protected void onDestroy() {
super.onDestroy();
//mChecker.onDestroy();
}
}

编辑:这是我的新行布局。我想这样做,以便点击行上的任意位置来选择它,而不必点击图像或标签。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >

<ImageView
android:id="@+id/icon"
android:layout_width="45dp"
android:layout_height="45dp"
android:layout_marginLeft="4dp"
android:layout_marginRight="10dp"
android:layout_marginTop="4dp"
android:src="@drawable/icon"
>
</ImageView>

<TextView
android:id="@+id/label"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="11dp"
android:layout_marginBottom="9dp"
android:text="@+id/label"
android:textSize="22dp" >
</TextView>

</LinearLayout>

编辑 2:将线性布局更改为填充父级而不是环绕文本。现在可以了。

最佳答案

对于这种行为,您需要实现自己的适配器。当您使用 Arrayadapter 时,您应该扩展 Arrayadapter 并覆盖 getView 方法以按照您希望的方式更改 ListItem 的 View 。看看这个ListView Tutorial有关此主题的更多信息。

关于android - 将图像添加到 Android ListView 的简单方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9020344/

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