使用 Volley / RecyclerView 从按钮单击的 JSON 中提取新信息

Posted

技术标签:

【中文标题】使用 Volley / RecyclerView 从按钮单击的 JSON 中提取新信息【英文标题】:Pulling new information from JSON on Button click using Volley / RecyclerView 【发布时间】:2020-11-18 12:44:50 【问题描述】:

我有一个 android 应用程序,它目前使用 php 从 SQL 数据库中提取信息以将其转换为 JSON 字符串

我的代码成功提取了有关应用程序启动的信息,并按预期使用我的数据库内容填充了 RecyclerView。

我的想法是在同一个 RecyclerView 中使用 2 个按钮在 2 组信息之间切换。

我的问题

所以我创建了一个按钮,在按钮单击时我希望它更改 JSON 输出所在的 URL (example.com/api.php) 并使用一个新的 URL单独的 JSON 输出 (example.com/api2.php)

本质上是为 RecyclerView 切换数据源,然后我需要在正在运行的应用程序中重新加载新结果。

我的问题

如何改变的值

private static final String URL_PRODUCTS = "http://example.com/Api.php";

private static final String URL_PRODUCTS = "http://example.com/Api2.php";

那么

以某种方式用新信息刷新我的 RecyclerView。

我的尝试

        simpleButton1.setOnClickListener(new View.OnClickListener() 
        @Override
        public void onClick(View view) 
        simpleButton1.setVisibility(View.GONE);
        menuButton.setText("Menu");
        URL_PRODUCTS = "http://example.com/Api.php"
#### I HAVE NO IDEA HOW TO REFRESH THE RECYCLERVIEW#######

我的一些代码(为清楚起见省略了一些位)

  public class MainActivity extends AppCompatActivity 

    Button simpleButton1;
    boolean menuUp;

    //this is the JSON Data URL
    private static final String URL_PRODUCTS = "http://example.com/Api.php";

   //a list to store all the products
   List<Product> productList;

   //the recyclerview
   RecyclerView recyclerView;

获取和转换数据

protected void onCreate(Bundle savedInstanceState) 

    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    setContentView(R.layout.activity_main);
    simpleButton1 = (Button) findViewById(R.id.simpleButton1);//get id of button 1
    menuButton = (Button) findViewById(R.id.menuButton);//get id of button 2


    //getting the recyclerview from xml
    recyclerView = findViewById(R.id.recylcerView);
    recyclerView.setHasFixedSize(true);
    recyclerView.setLayoutManager(new LinearLayoutManager(this));

    //initializing the productlist
    productList = new ArrayList<>();

    //this method will fetch and parse json
    //to display it in recyclerview
    loadProducts();

更多

        /*
    * Creating a String Request
    * The request type is GET defined by first parameter
    * The URL is defined in the second parameter
    * Then we have a Response Listener and a Error Listener
    * In response listener we will get the JSON response as a String
    * */
    StringRequest stringRequest = new StringRequest(Request.Method.GET, URL_PRODUCTS,
            new Response.Listener<String>() 
                @Override
                public void onResponse(String response) 
                    try 
                        //converting the string to json array object
                        JSONArray array = new JSONArray(response);

                        //traversing through all the object
                        for (int i = 0; i < array.length(); i++) 

                            //getting product object from json array
                            JSONObject product = array.getJSONObject(i);

                            //adding the product to product list
                            productList.add(new Product(
                                    product.getInt("id"),
                                    product.getString("title"),
                                    product.getString("shortdesc"),
                                    product.getDouble ("rating"),
                                    product.getDouble("price"),
                                    product.getString("image")
                            ));
                        

                        //creating adapter object and setting it to recyclerview
                        ProductsAdapter adapter = new ProductsAdapter(MainActivity.this, productList);
                        recyclerView.setAdapter(adapter);
                     catch (JSONException e) 
                        e.printStackTrace();
                    
                
            ,
            new Response.ErrorListener() 
                @Override
                public void onErrorResponse(VolleyError error) 

                
            );

MORE

        //adding our stringrequest to queue
        Volley.newRequestQueue(this).add(stringRequest);

【问题讨论】:

在您的代码中,您在 StringRequest 实例化中使用静态 final(无法更改)字段 URL_PRODUCTS,为什么不尝试将 URL 作为参数传递到包含 StringRequest 实例化的方法?这样,您可以调用传入所需 URL 的方法。此外,一旦 productList 中的数据发生更改,您只需在适配器上调用 notifyDatasetChanged()。在您的情况下,您正在创建一个新适配器并将其传递给每个响应的 recyclerview,这也将起作用。 我知道我对“final”并不熟悉,但仔细研究一下,我发现我在技术上已经将我的 URL_PRODUCTS 设置为一个常数。所以你说我应该在必要时调用它并将它视为一个变量更有意义,我会这样改变它,谢谢 是的。如果你想改变它,不要让它成为最终的。如果您更改 url,那么您只需在按钮单击内 调用 loadProducts();(假设这是获取数据的方法。) 【参考方案1】:

你可以定义2个url:

private static final String URL_PRODUCTS = "http://example.com/Api.php";
private static final String URL_PRODUCTS_2 = "http://example.com/Api2.php";

然后设置 RecyclerView :

productList = new ArrayList<>();
recyclerView.setHasFixedSize(true);
recyclerView.setLayoutManager(new LinearLayoutManager(this));
adapter = new ProductsAdapter(MainActivity.this, productList);
recyclerView.setAdapter(adapter);
loadProducts(URL_PRODUCTS);//add param for this method then you have to add it to your volley request

在你的截击响应中更改 2 行

ProductsAdapter adapter = new ProductsAdapter(MainActivity.this, productList);
recyclerView.setAdapter(adapter);

到:

adapter.notifyDataSetChanged();

现在当点击按钮时,您将更改 url

simpleButton1.setOnClickListener(new View.OnClickListener() 
        @Override
        public void onClick(View view) 
            productList.clear();
            loadProducts(URL_PRODUCTS_2);

【讨论】:

谢谢,我已经设法通过使用您提供的代码/信息使其工作,干杯

以上是关于使用 Volley / RecyclerView 从按钮单击的 JSON 中提取新信息的主要内容,如果未能解决你的问题,请参考以下文章

java - 如何使用Java中的Volley库将JSON api数据放入recyclerview?

使用 Volley / RecyclerView 从按钮单击的 JSON 中提取新信息

如何通过 Volley 获取数据实现具有两个或多个不同卡片视图的 RecyclerView?

Androiid_Volley+Image-Loader+RecyclerView实现网络下载图片瀑布流

Android_Volley+Image-Loader+RecyclerView实现网络下载图片瀑布流

Android_Volley+Image-Loader+RecyclerView实现网络下载图片瀑布流