我想在ArrayList<String>
上显示ListView
的所有项目。我为此使用ArrayAdapter<String>
。问题是只显示了ArrayList
的第一项(在我的示例中为&#39; foo&#39;)。有人可以告诉我为什么吗?我错过了什么吗?
我使用Android Studio 2中生成的代码(Tabbed Action Bar Spinner Activity)制作了一个最小的例子。
我的FooActivity
:
public class FooActivity extends AppCompatActivity {
...
public static class PlaceholderFragment extends Fragment {
private ListView fooListView;
private ArrayAdapter<String> mAdapter;
...
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View rootView = inflater.inflate(R.layout.fragment_foo, container, false);
fooListView = (ListView) rootView.findViewById(R.id.foo_list);
updateList();
return rootView;
}
private void updateList() {
ArrayList<String> strings = new ArrayList<>();
strings.add("foo");
strings.add("bar");
if (mAdapter == null) {
mAdapter = new ArrayAdapter<>(getContext(),
R.layout.item_foo,
R.id.foo_string,
strings);
fooListView.setAdapter(mAdapter);
} else {
mAdapter.clear();
mAdapter.addAll(strings);
mAdapter.notifyDataSetChanged();
}
}
}
我的fragment_foo.xml
:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
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="com.foo.activities.FooActivity$PlaceholderFragment">
<ListView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/foo_list"
android:layout_below="@+id/total_activities"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_marginTop="10dp"
android:layout_alignParentBottom="true" />
</RelativeLayout>
item_foo.xml
:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/foo_string"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="some_string"
android:textSize="20sp"
android:layout_alignParentTop="true"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true" />
</LinearLayout>
如果有帮助我可以发布生成的activity_foo.xml
(我没有在那里进行任何更改)和完整的FooActivity
课程。
答案 0 :(得分:6)
问题实际上是我的activity_foo.xml
有一个NestedScrollView
。我添加了android:fillViewport="true"
,现在它显示了每个项目。
我的NestedScrollView
现在看起来像这样:
<android.support.v4.widget.NestedScrollView
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
android:fillViewport="true"/>
答案 1 :(得分:3)
在任何ListView
上,如果您使用android:layout_height="wrap_content"
,您只会看到一个项目。试试android:layout_height="match_parent"
。如果ListView
仅占用部分布局,则您需要LinearLayout
权重或带有约束的RelativeLayout
。但wrap_content
永远不会在ListView
的高度上工作。
答案 2 :(得分:0)
你的Listview看起来像这样
<ListView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/foo_list"
android:layout_marginTop="10dp"/>
我已从列表视图android:layout_below="@+id/total_activities"
和
android:layout_alignParentBottom="true"
答案 3 :(得分:0)
对于其他人:可以将ListView嵌套在另一个布局中,也可以在围绕ListView的布局上使用android:layout_height="wrap_content"
。 (只要最外面的布局允许match_parent即可)
但是,当用layout_height="match_parent"
定义用于填充ListView的TextView时,是不好的。它将覆盖第一行之后的所有后续行。
坏:
<TextView
android:id="@+id/infoRow_textView"
android:layout_width="match_parent"
android:layout_height="match_parent"
/>
好:
<TextView
android:id="@+id/infoRow_textView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
/>