gpt4 book ai didi

java - 以编程方式创建 Android 滚动列表

转载 作者:行者123 更新时间:2023-11-30 04:01:38 24 4
gpt4 key购买 nike

来自网络开发背景,我正在寻找的东西应该很简单。我已经从安卓手机中提取了所有联系人。

他们的名字和号码在一个名为 contacts (number = key) 的 HashMap 中,我正在遍历他们,我希望创建一个他们的列表供用户查看。 key (电话号码)必须在那里可用但不能被看到,并且列表必须滚动。所以像 <option value="phone">Name</option> 这样的东西将会是完美的。我卡住了。有什么想法吗?

最佳答案

使用适配器将列表扩展到 ListView。

喜欢:

public class SimpleListView extends ListActivity {

private String[] lv_arr = {};
private ListView mainListView = null;
final String SETTING_TODOLIST = "todolist";

private ArrayList<String> selectedItems = new ArrayList<String>();

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


// Prepare an ArrayList of todo items
ArrayList<String> listTODO = [INSERT THE VALUES FROM THE CONTACTS HERE];

this.mainListView = getListView();

// Bind the data with the list
lv_arr = listTODO.toArray(new String[0]);
mainListView.setAdapter(new ArrayAdapter<String>(SimpleListView.this,
android.R.layout.simple_list_item_2, lv_arr));

}

您还需要一个布局:简单的.xml:

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

<ListView
android:id="@+id/mainListView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_above="@+id/size"
android:layout_below="@+id/editText1"
android:gravity="fill_vertical|fill_horizontal"
android:horizontalSpacing="15dp"
android:isScrollContainer="true"
android:numColumns="1"
android:padding="5dp"
android:scrollbars="vertical"
android:smoothScrollbar="true"
android:stretchMode="columnWidth" >

</ListView>

</RelativeLayout>

关于java - 以编程方式创建 Android 滚动列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12407809/

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