繁体   English   中英

在 RecyclerView 的新活动中打开项目(来自 json 的数据)

[英]Open item in new activity from RecyclerView (data from json)

您好,我是 android 工作室的新手,我有代码显示来自 json 数据的回收商视图列表。 现在我想在新活动中打开项目。我想从 recyclerview 打开项目并在新活动中显示图像和一些文本。 我需要解决方案代码。

我尝试了一些方法,但它不起作用。

这是我的代码:

公共 class MainActivity 扩展 AppCompatActivity {

public static final int CONNECTION_TIMEOUT = 10000;
public static final int READ_TIMEOUT = 15000;
private RecyclerView mRVFishPrice;
private AdapterFish mAdapter;
SwipeRefreshLayout mSwipeRefreshLayout;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    mSwipeRefreshLayout = (SwipeRefreshLayout)findViewById(R.id.swifeRefresh);
    mSwipeRefreshLayout.setOnRefreshListener(new SwipeRefreshLayout.OnRefreshListener() {
        @Override
        public void onRefresh() {
            new AsyncFetch().execute();
        }
    });
    new AsyncFetch().execute();
}

private class AsyncFetch extends AsyncTask<String, String, String> {
    ProgressDialog pdLoading = new ProgressDialog(MainActivity.this);
    HttpURLConnection conn;
    URL url = null;

    @Override
    protected void onPreExecute() {
        super.onPreExecute();

        //this method will be running on UI thread
        pdLoading.setMessage("\tLoading...");
        pdLoading.setCancelable(false);
        pdLoading.show();

    }

    @Override
    protected String doInBackground(String... params) {
        try {


            url = new URL("https://MYURL.com");

        } catch (MalformedURLException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
            return e.toString();
        }
        try {

            // Setup HttpURLConnection class to send and receive data from php and mysql
            conn = (HttpURLConnection) url.openConnection();
            conn.setReadTimeout(READ_TIMEOUT);
            conn.setConnectTimeout(CONNECTION_TIMEOUT);
            conn.setRequestMethod("GET");

            // setDoOutput to true as we recieve data from json file
            conn.setDoOutput(true);

        } catch (IOException e1) {
            // TODO Auto-generated catch block
            e1.printStackTrace();
            return e1.toString();
        }

        try {

            int response_code = conn.getResponseCode();

            // Check if successful connection made
            if (response_code == HttpURLConnection.HTTP_OK) {

                // Read data sent from server
                InputStream input = conn.getInputStream();
                BufferedReader reader = new BufferedReader(new InputStreamReader(input));
                StringBuilder result = new StringBuilder();
                String line;

                while ((line = reader.readLine()) != null) {
                    result.append(line);
                }

                // Pass data to onPostExecute method
                return (result.toString());

            } else {

                return ("unsuccessful");
            }

        } catch (IOException e) {
            e.printStackTrace();
            return e.toString();
        } finally {
            conn.disconnect();
        }


    }

    @Override
    protected void onPostExecute(String result) {

        //this method will be running on UI thread
        mSwipeRefreshLayout.setRefreshing(false);


        pdLoading.dismiss();
        List<DataFish> data=new ArrayList<>();

        pdLoading.dismiss();
        try {

            JSONArray jArray = new JSONArray(result);

            for(int i=0;i<jArray.length();i++){
                JSONObject json_data = jArray.getJSONObject(i);
                DataFish fishData = new DataFish();
                fishData.fishImage= json_data.getString("fish_img");
                fishData.fishName= json_data.getString("fish_name");
                fishData.catName= json_data.getString("cat_name");
                fishData.sizeName= json_data.getString("size_name");
                fishData.price= json_data.getInt("price");
                data.add(fishData);
            }

            mRVFishPrice = (RecyclerView)findViewById(R.id.fishPriceList);
            mAdapter = new AdapterFish(MainActivity.this, data);
            mRVFishPrice.setAdapter(mAdapter);
            mRVFishPrice.setLayoutManager(new LinearLayoutManager(MainActivity.this));

        } catch (JSONException e) {
            Toast.makeText(MainActivity.this, e.toString(), Toast.LENGTH_LONG).show();
        }

    }

}

}

我希望在新活动中从 recyclerview 列表中打开项目并显示图像项目和一些文本。

您可以通过在适配器 class 中传递接口的实例来归档它,并在您的活动中实现该接口。

参考此以获得见解链接

示例片段

声明接口:

public interface AdapterCallback {
   void onFishClick(DataFish item);
}

通过在活动中设置您的适配器来传递接口实例。

new AdapterFish(MainActivity.this, data, new AdapterCallback() {
    @Override
    void onfishClick(DataFish item) {
     // herer do your work
    }
});

在您的适配器构造函数中

private AdapterCallback callback;
AdapterFish(Context contex, data, AdapterCallback callback) {
   ...
   this.callback = callback;
}

在持有者和方法调用中定义点击监听器 callback.onFishCall(selectedItem);

   OnBindViewHolder(...) {
       holder.button.onClicklistener(new OnClickListener{
          ...
          if(callback != null) { // for null check
              callback.onFishClikc(item);
          }
       });
   }

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM