- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
似乎当我尝试将 2 个 json 对象推送到我的 RecyclerView
时它只显示一次,我已经使用了调试器但仍然找不到错误
我正在解析 JSONArray
2 个对象并将其显示到我的 RecyclerView
中
解析器
public Canciones getJsonResults(){
Canciones canciones = new Canciones();
InputStream is = getResources().openRawResource(R.raw.song_data);
Writer writer = new StringWriter();
char[] buffer = new char[1024];
try {
Reader reader = new BufferedReader(new InputStreamReader(is, "UTF-8"));
int n;
while ((n = reader.read(buffer)) != -1) {
writer.write(buffer, 0, n);
}
}catch (IOException e) {
e.printStackTrace();
}
finally {
try {
is.close();
} catch (IOException e) {
e.printStackTrace();
}
}
String jsonString = writer.toString();
try {
JSONArray objects = new JSONArray(jsonString);
for (int i = 0; i < objects.length(); i++) {
JSONObject cancionesObj = objects.getJSONObject(i);
int id = cancionesObj.getInt("id");
String song_title = cancionesObj.getString("song_title");
String album = cancionesObj.getString("album");
String cover = cancionesObj.getString("cover");
String song_id = cancionesObj.getString("song_id");
String artist = cancionesObj.getString("artist");
canciones.setId(id);
canciones.setSongTitle(song_title);
canciones.setAlbum(album);
canciones.setCover(cover);
canciones.setSongId(song_id);
canciones.setArtist(artist);
}
} catch (JSONException e) {
e.printStackTrace();
}
return canciones;
}
我将它添加到我的 ArrayList 中,如下所示
mRecyclerView = findViewById(R.id.songsRecycler);
LinearLayoutManager layoutManager = new LinearLayoutManager(this);
mRecyclerView.setLayoutManager(layoutManager);
misCanciones.add(getJsonResults());
mAdapter = new RecyclerAdapter(this,R.layout.list_item,misCanciones);
mRecyclerView.setAdapter(mAdapter);
输出
Json数据结构
[
{
"id": 1,
"song_title": "Master Of Puppets",
"album": "Master Of Puppets",
"artist": "Metallica",
"cover": "metallica_mop",
"song_id": "biumbis"
},
{
"id": 2,
"song_title": "Flight Of Icarus",
"album": "Piece Of Mind",
"artist": "Iron Maiden",
"cover": "iron_pom",
"song_id": "biumbis"
}
]
list_item.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<ImageView
android:layout_width="50dp"
android:layout_height="48dp"
android:layout_marginLeft="8dp"
android:layout_marginTop="4dp"
android:id="@+id/rowImage"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/rowText"
android:layout_marginTop="4dp"
android:layout_marginLeft="8dp"
/>
</LinearLayout>
适配器
public class RecyclerAdapter extends RecyclerView.Adapter<RecyclerAdapter.MusicaViewHolder> {
private Context mContext;
private int mLayoutResourceId;
private ArrayList<Canciones> mArrayListCanciones;
public RecyclerAdapter(Context mContext, int mLayoutResourceId, ArrayList<Canciones> mCanciones) {
this.mContext = mContext;
this.mLayoutResourceId = mLayoutResourceId;
this.mArrayListCanciones = mCanciones;
}
@NonNull
@Override
public MusicaViewHolder onCreateViewHolder(@NonNull ViewGroup viewGroup, int i) {
View itemView = LayoutInflater.from(mContext).inflate(mLayoutResourceId, viewGroup, false);
return new MusicaViewHolder(itemView);
}
@Override
public void onBindViewHolder(@NonNull MusicaViewHolder musicaViewHolder, int position) {
Canciones canciones = mArrayListCanciones.get(position);
int drawableId = mContext.getResources().getIdentifier(canciones.getCover(), "drawable", mContext.getPackageName());
musicaViewHolder.mRowImage.setImageResource(drawableId);
musicaViewHolder.mTextImage.setText(canciones.getSongTitle());
}
@Override
public int getItemCount() {
return mArrayListCanciones.size();
}
@Override
public int getItemViewType(int position) {
return position;
}
@Override
public long getItemId(int position) {
return position;
}
public class MusicaViewHolder extends RecyclerView.ViewHolder{
private ImageView mRowImage;
private TextView mTextImage;
public MusicaViewHolder(@NonNull View itemView) {
super(itemView);
itemView.setOnClickListener(this);
mRowImage = itemView.findViewById(R.id.rowImage);
mTextImage = itemView.findViewById(R.id.rowText);
}
似乎 JSONArray 中的 for 循环仅采用最后一个值,我正在考虑将每个循环存储在另一个数组列表中,然后将其传递给我的 ArrayList<Canciones>
但它显示重复项
最佳答案
如果你这样写,getJsonResults()
方法只会返回最后一个值。
编辑getJsonResults()
方法:
public ArrayList<Canciones> getJsonResults(){
ArrayList<Canciones> cancioesList = new ArrayList();
InputStream is = getResources().openRawResource(R.raw.song_data);
Writer writer = new StringWriter();
char[] buffer = new char[1024];
try {
Reader reader = new BufferedReader(new InputStreamReader(is, "UTF-8"));
int n;
while ((n = reader.read(buffer)) != -1) {
writer.write(buffer, 0, n);
}
}catch (IOException e) {
e.printStackTrace();
}
finally {
try {
is.close();
} catch (IOException e) {
e.printStackTrace();
}
}
String jsonString = writer.toString();
try {
JSONArray objects = new JSONArray(jsonString);
for (int i = 0; i < objects.length(); i++) {
Canciones canciones = new Canciones();
JSONObject cancionesObj = objects.getJSONObject(i);
int id = cancionesObj.getInt("id");
String song_title = cancionesObj.getString("song_title");
String album = cancionesObj.getString("album");
String cover = cancionesObj.getString("cover");
String song_id = cancionesObj.getString("song_id");
String artist = cancionesObj.getString("artist");
canciones.setId(id);
canciones.setSongTitle(song_title);
canciones.setAlbum(album);
canciones.setCover(cover);
canciones.setSongId(song_id);
canciones.setArtist(artist);
cancioesList.add(canciones);
}
} catch (JSONException e) {
e.printStackTrace();
}
return cancioesList;
}
当您获得 Canciones 对象列表时,使用以下方法添加到misCanciones:
misCanciones.addAll(getJsonResults())
关于java - RecyclerView 适配器没有填满我的数据数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52509961/
我正在运行 Play! 2.3 使用 Akka 的多线程应用程序。每个线程访问 MySQL 数据库并运行一些计算。每次我运行一组这样的任务时,应用程序的内存占用量都会增加,这主要是由于 JDBC4Pr
我是 JavaScript 新手,正在尝试实现选择排序来亲自接触数组(注意:我知道有一个内置的排序函数)。不过,我遇到了一些奇怪的行为。 这是我的代码: function selectionSort(
我正在使用 unsemantic grid创建我的布局。好吧,我有一个容器,其中有一个标签和一个输入文本。标签的宽度为 20% 然后 margin-rightof 1em 然后我想让容器中的其余空间由
看看这张取自 morsmachine.dk/go-scheduler 的著名图片 灰名单是 P 的本地运行队列。如果此队列变空,它们将被全局运行队列中的 go routines 填充。 问题是,谁来填
(帖子创建于 2016 年 10 月 5 日) 我注意到每次运行图像并删除它时,我的系统都不会恢复到原来的可用空间量。 我应用于容器的生命周期是: > docker build ... > docke
我有一个应用程序,它在启动时运行两个或三个完整的 GC。有很多堆空间,不需要运行任何 GC(minor 或 full)。然而,在 gc 日志中,我可以看到 permgen 被填满,然后立即运行完整
我正在尝试制作可视化 VStack 属性的 VStack 示例应用 但是我的 VStack 无法填满屏幕的宽度 我在互联网上尝试了很多解决方案(frame modifier、HStack with S
[已解决] 所以我在页面顶部有一个高度恒定的 div,我希望在它下面有一个 iFrame 来填充页面的其余部分。 Google Images 和 LinkedIn 做的事情非常相似 参见:http:/
我正在尝试使我的标题框与我的图像大小相同,同时又不失去 flex-slider 的响应能力,有什么建议吗? http://jsfiddle.net/bmBnF/10/ 疯狂的K 最佳答案 我通过将其设
我有一个元素是 的兄弟元素动态填充 hello 我想要 固定在屏幕底部直到动态 s 要求将其向下推到 View 下方。 我尝试了以下但无法获得我想要的结果。 该元素位
我是一名优秀的程序员,十分优秀!