如何从数组中填充 ListView?
Posted
技术标签:
【中文标题】如何从数组中填充 ListView?【英文标题】:How to populate ListView from an Array? 【发布时间】:2015-09-14 15:34:39 【问题描述】:我对安卓很陌生。我需要填充一个 ListView。就像现在一样,我只是添加到一个数组中,然后尝试填充视图。它最终将在现有数据库中完成。
列表不显示在 listView 小部件中。
Main.xml
如下:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_
android:layout_
android:weightSum="1">
<TextView
android:layout_
android:layout_
android:textSize="22sp"
android:textColor="#0000CC"
android:background="#E8E8F0"
android:text="@string/textview1"
android:id="@+id/textview1"
android:autoText="false"/>
<ListView
android:layout_
android:background="#3399FF"
android:layout_
android:id="@+id/metroList"
/>
</LinearLayout>
我的myActivity
文件:
package com.bkane56.metrolink;
import android.app.Activity;
import android.os.Bundle;
import android.widget.Button;
import android.widget.ListView;
import android.widget.TextView;
public class MyActivity extends Activity
Button button;
TextView textView;
ListView listView;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState)
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
// button.setOnClickListener(new MyOnClickListener(this));
textView = (TextView) findViewById(R.id.textview1);
listView = (ListView) findViewById(R.id.metroList);
我的文件使用arrayAdapter
:
package com.bkane56.metrolink;
import android.app.ListActivity;
import android.os.Bundle;
import android.widget.ArrayAdapter;
import android.widget.ListView;
import java.util.ArrayList;
public class MetroStopList extends ListActivity
public void onCreate(Bundle saveInstanceState)
super.onCreate(saveInstanceState);
setContentView(R.layout.main);
ListView metroList = (ListView) findViewById(R.id.metroList);
ArrayList<String> metroStop = new ArrayList<String>();
metroStop.add("LAMBERT MAIN TRML METROLINK STATION");
metroStop.add("LAMBERT EAST TRML METROLINK STATION");
metroStop.add("RICHMOND HEIGHTS METROLINK STATION");
metroStop.add("CLAYTON METROLINK STATION");
metroStop.add("BRENTWOOD METROLINK STATION");
metroStop.add("MAPLEWOOD METROLINK STATION");
metroStop.add("SUNNEN METROLINK STATION");
metroStop.add("FORSYTH METROLINK STATION");
metroStop.add("SHREWSBURY METROLINK STATION");
metroStop.add("NORTH HANLEY METROLINK STATION");
metroStop.add("UMSL NORTH METROLINK STATION");
//more of the same...the list is a total of 36
ArrayAdapter<String> arrayAdapter = new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, metroStop);
metroList.setAdapter(arrayAdapter);
任何帮助将不胜感激。我相信当我走得更远时我会有更多的问题。
【问题讨论】:
请解释您在运行应用程序时看到的内容以及它与您想要的内容有何不同。另外,请出示您的AndroidManifest.xml
文件。
【参考方案1】:
我不确定这个答案是否会对您有所帮助。如果您认为我不理解您的问题,请告诉我,我会补充更多。
基本上,我不确定您为什么要使用两个 .java 类。您可以只使用一个来填充您的 ListView。此外,使用 ListActivity 可以很好地达到此目的,但在使用时需要注意一些事项。 Here 你可以找到很好的例子来解释如何使用 ListActivity。
这是我的代码实现:
MainActivity.java
import android.app.ListActivity;
import android.os.Bundle;
import android.widget.ArrayAdapter;
import java.util.ArrayList;
import java.util.List;
public class MainActivity extends ListActivity
private List<String> metroStop;
@Override
protected void onCreate(Bundle savedInstanceState)
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
metroStop = new ArrayList<String>();
metroStop.add("LAMBERT MAIN TRML METROLINK STATION");
metroStop.add("LAMBERT EAST TRML METROLINK STATION");
metroStop.add("RICHMOND HEIGHTS METROLINK STATION");
metroStop.add("CLAYTON METROLINK STATION");
metroStop.add("BRENTWOOD METROLINK STATION");
metroStop.add("MAPLEWOOD METROLINK STATION");
metroStop.add("SUNNEN METROLINK STATION");
metroStop.add("FORSYTH METROLINK STATION");
metroStop.add("SHREWSBURY METROLINK STATION");
metroStop.add("NORTH HANLEY METROLINK STATION");
metroStop.add("UMSL NORTH METROLINK STATION");
ArrayAdapter<String> myAdapter = new ArrayAdapter<String>(this, R.layout.row_layout, R.id.listText, metroStop);
setListAdapter(myAdapter);
activity_main.xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_
android:layout_
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity">
<TextView
android:id="@+id/mainText"
android:layout_
android:layout_
android:text="My list" />
<ListView
android:id="@android:id/list"
android:layout_
android:layout_
android:layout_below="@+id/mainText"
android:background="#aaaaaa" />
</RelativeLayout>
row_layout.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_
android:layout_
android:orientation="vertical" >
<TextView
android:id="@+id/listText"
android:layout_
android:layout_
android:padding="10dp"
android:textSize="18sp"
android:textStyle="bold"/>
</LinearLayout>
AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.populatefromarray" >
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
</application>
</manifest>
【讨论】:
以上是关于如何从数组中填充 ListView?的主要内容,如果未能解决你的问题,请参考以下文章
Android Studio,如何使用数组或光标中的数据填充自定义 ListView?
我可以使用 Simpleadapter 和 hashmap 用嵌套数组填充 listView 吗?
使用 Kotlin 从 Android 上 ViewModel 中的 LiveData 更新 ListView 中的元素