gpt4 book ai didi

java - ListView 只显示第一项

转载 作者:行者123 更新时间:2023-11-29 09:52:28 25 4
gpt4 key购买 nike

我想显示 ArrayList<String> 的所有项目在 ListView 上.我使用 ArrayAdapter<String>为了这。问题是 ArrayList 的只有第一项(在我的示例中为“foo”)显示。有人能告诉我为什么吗?我错过了什么吗?

我使用 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类也是。

最佳答案

问题实际上是我的 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"/>

关于java - ListView 只显示第一项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37281863/

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