我正在为在线博客开发Android应用程序,该应用程序从其API中检索数据(该公司制作了它,因此我可以在其中使用它,因此可以对其进行修改)。
该应用会在加载时显示带有 n 博客条目的ListView。事情是我在过去三天里一直在寻找一种在ListView底部添加上一个/下一个按钮的方法,最后放弃并尝试另一种方式。
当用户在其上下滚动时,我已经看到应用更新并将从服务器拉出的内容附加到列表(不确定哪种类型)。
这可能吗?如果是这样,怎么办呢?
任何透露的信息,例子(尽可能简单)或帮助将不胜感激!
额外信息
我在一个LinearLineout中加载ListView,在onCreate方法中调用它。
content_main.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context="com.company.myApp.MainActivity"
tools:showIn="@layout/app_bar_main"
tools:layout_editor_absoluteY="81dp"
tools:layout_editor_absoluteX="0dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<ListView
android:id="@+id/lv"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:layout_alignParentStart="true"
android:layout_alignParentTop="true"
android:background="@color/myGrey"
android:scrollbars="none"
android:visibility="visible" />
</LinearLayout>
</LinearLayout>
我还使用自定义适配器来填充ListView以及检索到的数据。此数据由自定义类检索并存储在List中,然后该列表作为参数传递给我用于设置此类适配器的方法。
public class AdaptadorPosts extends ArrayAdapter {
public AdaptadorPosts(Context context, List objects) {
super(context, 0, objects);
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
LayoutInflater inflater = (LayoutInflater) getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View v = convertView;
if (null == convertView) {
v = inflater.inflate(R.layout.lista_posts, parent, false);
}
TextView titulo = (TextView)v.findViewById(R.id.titulo);
TextView resumen = (TextView)v.findViewById(R.id.resumen);
TextView fecha = (TextView)v.findViewById(R.id.fecha);
TextView autor = (TextView)v.findViewById(R.id.autor);
Post item = (Post) getItem(position);
titulo.setText(Html.fromHtml(item.getTitulo()));
if(item.getResumen().isEmpty() || item.getResumen().equals(null)) {
resumen.setText("¡No hay resumen!");
} else {
resumen.setText(Html.fromHtml(item.getResumen()));
}
fecha.setText(Html.fromHtml(item.getFecha()));
autor.setText(Html.fromHtml(item.getAutor().getNombre()));
return v;
}
}
答案 0 :(得分:0)
如果我理解你想要:
在屏幕底部添加上一个/下一个按钮
您想要动态展示无穷无尽的内容
第一个可以通过RelativeLayout轻松实现,而第二个则应该使用RecyclerView。
对于您的布局,您可以使用以下内容:
android:layout_below="@id/lv"
如果您希望按钮位于列表的正下方,可以使用android:layout_alignParentBottom="true"
并删除notifyItemInserted(int position)
来附加按钮
Android RecyclerView显示给定数量的项目(e.x.10)并预加载一些下一个和上一个项目。它是无穷无尽的列表的理想选择。如果要动态添加项目,则需要在适配器中执行此操作,方法是将项目添加到列表并调用{{1}}方法。