android - 两个 fragment 之间的 onItemClickListener

标签 android android-listview android-fragments

我是 android 的新手。我已经尝试过但无法找出我缺少的东西。我正在使用两个 fragment 两个显示列表。现在我想在用户单击第一个列表项时更改第二个 fragment 中的列表数据。默认情况下,将选择零位置索引来显示第二个列表中的数据。我正在使用自定义数组适配器在两个 fragment 中显示列表。请帮帮我。谢谢你的考虑。 我在这里粘贴我的代码:

Activity 类:

   public class ProductListActivity extends Activity implements ProductInterface {
public static String cookie;
public static String jsonSettingsResponse;
public static String[] tids;
public static String jsonPorductsCategoryListResponseString;
public JSONArray jsonPorductsCategoryListResponseArray;
public static String vid;
public static String publicPath;
public static JSONArray productsList;
public ArrayList<String> listItems;
public String[] listProCategory;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.product_category_and_list);
    Intent intent = getIntent();
    cookie = intent.getStringExtra(BConstant.WEB_SERVICES_COOKIES);
    productsList = new JSONArray();

    FetchProductCategories products = new FetchProductCategories();
    productsList = products.fetchProducts();
    listProCategory = products.onDisplayProductList(productsList).toArray(
            new String[0]);

    Bundle bundle = new Bundle();
    bundle.putString(BConstant.WEB_SERVICES_COOKIES, cookie);
    bundle.putString(BConstant.PUBLIC_PATH, publicPath);
    bundle.putStringArray(BConstant.TAXONOMY_TID, tids);
    bundle.putStringArray(BConstant.PRODUCT_CATEGORY_NAMES,
            listProCategory);
    ProductCategoryFragment.newInstance(bundle);
    Bundle bundleForProductList = new Bundle();
    bundleForProductList.putStringArray(BConstant.TAXONOMY_TID, tids);
    bundleForProductList.putString(BConstant.WEB_SERVICES_COOKIES, cookie);
    ProductListFragment.newInstance(bundleForProductList);
}


private class FetchProductCategories {
    protected JSONArray fetchProducts(String... params) {
        jsonSettingsResponse = WebserviceBUtil
                .callWebServicesGetVocabularyList(cookie);
        vid = JSONUtil.parseJSONResponse(jsonSettingsResponse,
                BConstant.TAXONOMY_VID);
        publicPath = JSONUtil.parseJSONResponse(jsonSettingsResponse,
                BConstant.PUBLIC_PATH);
        jsonPorductsCategoryListResponseString = WebserviceBUtil
                .callWebServicesGetProductsCategoryList(cookie, vid);
        tids = ProductCategoryIds.parseJSONResponseToGetTidsOfProducts(
                jsonPorductsCategoryListResponseString,
                BConstant.TAXONOMY_TID);
        try {
            jsonPorductsCategoryListResponseArray = new JSONArray(
                    jsonPorductsCategoryListResponseString);
        } catch (JSONException e) {
            e.printStackTrace();
        }
        return jsonPorductsCategoryListResponseArray;
    }


    protected ArrayList<String> onDisplayProductList(JSONArray result) {
        listItems = new ArrayList<String>();
        for (int i = 0; i < result.length(); i++) {
            try {
                listItems
                        .add(result.getJSONObject(i)
                                .getString(BConstant.NAME_CONSTANT)
                                .toString());
            } catch (Exception ex) {
                ex.printStackTrace();
            }
        }
        return listItems;
    }
}


@Override
public HashMap<Integer, Bitmap> DownloadImages(
        HashMap<Integer, String> productCategoryImagePath) {
    HashMap<Integer, Bitmap> imgBitmap = new HashMap<Integer, Bitmap>();
    for (int pos = 0; pos < productCategoryImagePath.size(); pos++) {
        Bitmap bval = ImageDownloader
                .getBitmapFromURL(productCategoryImagePath.get(pos));
        imgBitmap.put(pos, bval);
    }
    return imgBitmap;

}

@Override
public void clickedProductCategory(String tid) {
    FragmentManager productListFragmentManager = getFragmentManager();
    ProductListFragment productListFragment = (ProductListFragment) productListFragmentManager
            .findFragmentById(R.id.proListfragment);
    productListFragment.clickedProductCategoryIdByProductCategoryFragment(tid);

}

第一个 fragment :

    public class ProductCategoryFragment extends Fragment implements OnItemClickListener{
ProductInterface productInterface;
private static String[] tids;
private static HashMap<Integer, String> productCategoryImagePath;
private static String jsonPorductsDetailsImagePathResponse;
private static String publicPath;
private static String cookie;
public static String[] listProCategory;
public  ListView listOfProductsCategory;
private static HashMap<Integer, Bitmap> imgBitmapUrls;
DisplayProductCategoryListArrayAdapter adapter;


@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
        Bundle savedInstanceState) {
     View fragProcatView = inflater.inflate(R.layout.product_category_list, container,
                false);

listOfProductsCategory =(ListView) fragProcatView .findViewById(R.id.productCategorylistView);
    return fragProcatView;

}

@Override
public void onActivityCreated(Bundle savedInstanceState) {
    super.onActivityCreated(savedInstanceState);
    productInterface = (ProductInterface) getActivity();
    productCategoryImagePath = new HashMap<Integer, String>();
    for (int i = 0; i < tids.length; i++) {
        jsonPorductsDetailsImagePathResponse = WebserviceBUtil
                .callWebServicesGetProductsDetails(cookie, tids[i]);
        String filename = ProductCategoryIds
                .parseJSONResponseToGetVidOfProductsFromVocabulary(
                        jsonPorductsDetailsImagePathResponse,
                        BConstant.FILE_NAME);
        String completeUrl = publicPath + filename;
        productCategoryImagePath.put(i, completeUrl);
    }
    imgBitmapUrls = productInterface
            .DownloadImages(productCategoryImagePath);
     adapter = new DisplayProductCategoryListArrayAdapter(
                getActivity(), listProCategory,
                imgBitmapUrls);
    listOfProductsCategory.setAdapter(adapter);
    listOfProductsCategory.setOnItemClickListener(this);
}
 static ProductCategoryFragment newInstance(Bundle bundle) {
        ProductCategoryFragment productCategoryFragment = new ProductCategoryFragment();
        productCategoryFragment.setArguments(bundle);
        cookie = bundle.getString(BConstant.WEB_SERVICES_COOKIES);
        tids = bundle.getStringArray(BConstant.TAXONOMY_TID);
        publicPath = bundle.getString(BConstant.PUBLIC_PATH);
listProCategory = bundle.getStringArray(BConstant.PRODUCT_CATEGORY_NAMES);
        return productCategoryFragment;
    }

@Override
public void onItemClick(AdapterView<?> parent, View view, int position,
        long id) {
    String clickedItemName = (String) listOfProductsCategory
            .getItemAtPosition(position);
    int clickedItemId = (int) listOfProductsCategory
            .getItemIdAtPosition(position);

    Toast.makeText(this.getActivity(),
            "Product is getting load : " + clickedItemName,
            Toast.LENGTH_SHORT).show();
        productInterface.clickedProductCategory(tids[clickedItemId]);
}


public class DisplayProductCategoryListArrayAdapter extends ArrayAdapter<String> {

    Context context;
    HashMap<Integer, Bitmap> prodctImgs;
    String[] proCategoryNames;
    HashMap<Integer, Bitmap>biturls;
    DisplayProductCategoryListArrayAdapter(Context c,
            String[] listCategory, HashMap<Integer, Bitmap> imgUrls) {
        super(c,
                R.layout.product_category_single_layout,
                R.id.productCategoryName, listCategory);
        this.context = c;
        this.prodctImgs = imgUrls;
        this.proCategoryNames = listCategory;
        this.biturls = imgUrls;
    }

    @Override
    public View getView(int position, View convertView, ViewGroup parent) {
        LayoutInflater inflater=((Activity)context).getLayoutInflater(); 
    View row = inflater.inflate(R.layout.product_category_single_layout, parent, false);
        ImageView productCategoryImage = (ImageView) row
                .findViewById(R.id.productCategoryImageId);
        Bitmap bitmap = imgBitmapUrls.get(position);
        // productCategoryImage.setFocusable(false);
        TextView productCategoryName = (TextView) row
                .findViewById(R.id.productCategoryName);
        productCategoryImage.setImageBitmap(bitmap);
        productCategoryName.setText(proCategoryNames[position]);
        return row;
    }
}
  }

第二个 fragment :

    public class ProductListFragment extends Fragment implements OnItemClickListener{
private static HashMap<Integer, Bitmap> imgBitmapUrls;
public  ListView listOfProducts;
ProductInterface productInterfaceForProductList;
private static String jsonPorductsCategoryListResponse;
private static String cookie;
private static String[] productImgPath;
private static String[] nids;
private static String[] title;
private static String[] tids;
private String tid;
private static HashMap<Integer, String> productListImagePath;
DisplayProductListArrayAdapter proListAdapter;
@Override
 public View onCreateView(LayoutInflater inflater,ViewGroup container,Bundle savedInstanceState ) {
     View fragProListView = inflater.inflate(R.layout.product_category_list, container,
                false);
     listOfProducts =(ListView) fragProListView .findViewById(R.id.productCategorylistView);
    return fragProListView;
    }

@Override
public void onActivityCreated(Bundle savedInstanceState) {
    super.onActivityCreated(savedInstanceState);
    productInterfaceForProductList = (ProductInterface) getActivity();
    jsonPorductsCategoryListResponse = WebserviceBUtil.
            callWebServicesGetProductsList(cookie, tids[0]);
    nids = ProductCategoryIds.parseJSONResponseToGetTidsOfProducts(
            jsonPorductsCategoryListResponse,
            BConstant.PRODUCT_NODE_ID);
    title = ProductCategoryIds.parseJSONResponseToGetTidsOfProducts(
            jsonPorductsCategoryListResponse,
            BConstant.PRODUCT_TITLE);
    productImgPath = ProductCategoryIds.parseJSONResponseToGetTidsOfProducts(
            jsonPorductsCategoryListResponse,
            BConstant.PRODUCT_IMAGE);
            productListImagePath = new HashMap<Integer, String>();
            for(int i =0;i<productImgPath.length;i++){
                productListImagePath.put(i, productImgPath[i]);
            }
            System.out.println(productListImagePath);
    imgBitmapUrls = productInterfaceForProductList
            .DownloadImages(productListImagePath);

    proListAdapter = new DisplayProductListArrayAdapter(
                getActivity(), title,
                imgBitmapUrls);
     listOfProducts.setAdapter(proListAdapter);
     listOfProducts.setOnItemClickListener(this);
}
 static ProductListFragment newInstance(Bundle bundle) {
     ProductListFragment productListFragment = new ProductListFragment();
     productListFragment.setArguments(bundle);
        cookie = bundle.getString(BConstant.WEB_SERVICES_COOKIES);
        tids = bundle.getStringArray(BConstant.TAXONOMY_TID);
        return productListFragment;
    }
@Override
public void onItemClick(AdapterView<?> arg0, View arg1, int arg2, long arg3) {
    // TODO Auto-generated method stub

}



public class DisplayProductListArrayAdapter extends ArrayAdapter<String> {

    Context context;
    HashMap<Integer, Bitmap> prodctImgs;
    String[] proCategoryNames;
    HashMap<Integer, Bitmap>biturls;
    DisplayProductListArrayAdapter(Context c,
            String[] listCategory, HashMap<Integer, Bitmap> imgUrls) {
        super(c,
                R.layout.products_list_single_layout,
                R.id.productCategoryName, listCategory);
        this.context = c;
        this.prodctImgs = imgUrls;
        this.proCategoryNames = listCategory;
        this.biturls = imgUrls;
    }

    @Override
    public View getView(int position, View convertView, ViewGroup parent) {
        LayoutInflater inflater=((Activity)context).getLayoutInflater(); 
View row = inflater.inflate(R.layout.products_list_single_layout, parent, false);
        ImageView productCategoryImage = (ImageView) row
                .findViewById(R.id.productImageId);
        Bitmap bitmap = imgBitmapUrls.get(position);
        // productCategoryImage.setFocusable(false);
        TextView productCategoryName = (TextView) row
                .findViewById(R.id.productName);
        productCategoryImage.setImageBitmap(bitmap);
        productCategoryName.setText(proCategoryNames[position]);
        return row;
    }
}

public void clickedProductCategoryIdByProductCategoryFragment(String tid){
    jsonPorductsCategoryListResponse = WebserviceBUtil.
            callWebServicesGetProductsList(cookie, tid);

}
 }

最佳答案

您可以创建接口(interface),该接口(interface)将监听第一个 fragment 并执行操作并将操作传递给您的 Activity 。

在您的 Activity 中,您可以更新第二个 Fragment 中的数据。

public interface IFoo
{
 public void foo();
}

在第一个 fragment 中

    IFoo responder; //global variable

    private ProductCategoryFragment(IFoo resp)
    {
    this.responder=resp;
    }

     static ProductCategoryFragment newInstance(Bundle bundle, IFoo resp) {
        ProductCategoryFragment productCategoryFragment = new ProductCategoryFragment(resp);
        productCategoryFragment.setArguments(bundle);
        cookie = bundle.getString(BsharpConstant.WEB_SERVICES_COOKIES);
        tids = bundle.getStringArray(BsharpConstant.TAXONOMY_TID);
        publicPath = bundle.getString(BsharpConstant.PUBLIC_PATH);
listProCategory = bundle.getStringArray(BsharpConstant.PRODUCT_CATEGORY_NAMES);
        return productCategoryFragment;
    }

有些是 fragment

responder.foo();

在你的 Activity 中

public class ProductListActivity extends Activity implements IFoo
{
...
public void foo()
{
 //pass data to second fragment
}

onCreate
{
...
ProductCategoryFragment.newInstance(bundle, this);
}
}

让你的 fragment 成为全局变量,以便随时访问它们

我希望它很清楚并且会有所帮助。如果不清楚,请随时提出其他问题:)

关于android - 两个 fragment 之间的 onItemClickListener,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20683593/

相关文章:

android - 多个对话框,第二个不显示

android - 将android布局转换为PDF文件

android - 自定义 ListView,其中所有图像都具有相同的大小

android - 未调用 fragment onResume

android - JSON 解析的问题

android - Gradle 无法同步

android - 带下划线的变量

php - eclipse 在 InBackground 方法中显示错误我不知道如何修复它

android - ListView 中的不同行布局

java - 查找 Include View 并更新 TextView