Reputation: 42824
What i have done: I am aware of using dependency injection of Roboguice in activity like below
@InjectView(R.id.listView) ListView listView;
Question:
From activity I am calling adapter like below::
AdptOrderListHome tickets = new AdptOrderListHome(getActivity(), result.getProducts());
listView.setAdapter(tickets);
AdptOrderListHome.java
public class AdptOrderListHome extends BaseAdapter {
ArrayList<InventoryProductItems> mProducts;
private Context mContext = null;
public AdptOrderListHome(Context context, ArrayList<InventoryProductItems> products) {
super();
mContext = context;
mProducts = products;
Log.d("",mProducts.size()+"");
Log.d("",mProducts.size()+"");
}
public int getCount() {
return mProducts.size();
}
public InventoryProductItems getItem(int position) {
return mProducts.get(position);
}
public long getItemId(int position) {
return position;
}
public View getView(final int position, View convertView, ViewGroup parent) {
View view = convertView;
final ViewHolder vHolder;
if (convertView == null) {
LayoutInflater layout = (LayoutInflater) mContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
view = layout.inflate(R.layout.row_order_list_home, null);
vHolder = new ViewHolder(view);
view.setTag(vHolder);
} else {
vHolder = (ViewHolder) view.getTag();
}
//Set the tag
vHolder.txtProductNameId.setTag(mProducts.get(position).getProduct().getId());
vHolder.txtProductNameId.setText(mProducts.get(position).getProduct().getName());
vHolder.txtInStockId.setText(mProducts.get(position).getCurrent_Product_item_Count()+"");
vHolder.txtRbProductsId.setText(mProducts.get(position).getRB_Product_item_Count()+"");
return view;
}
class ViewHolder {
private TextView txtProductNameId, txtInStockId, txtRbProductsId;
private LinearLayout root;
public ViewHolder(View base) {
txtProductNameId = (TextView) base.findViewById(R.id.txtProductNameId);
txtInStockId = (TextView) base.findViewById(R.id.txtInStockId);
txtRbProductsId = (TextView) base.findViewById(R.id.txtRbProductsId);
root = (LinearLayout) base.findViewById(R.id.root);
}
}
}
class ViewHolder {
@InjectView(R.id.txtProductNameId) private TextView txtProductNameId;
@InjectView(R.id.txtInStockId) private TextView txtInStockId;
@InjectView(R.id.txtRbProductsId) private TextView txtRbProductsId;
public ViewHolder(View base) {
RoboGuice.getInjector(base.getContext()).injectViewMembers(mContext);
}
}
error:
mContext giving me error in line
RoboGuice.getInjector(base.getContext()).injectViewMembers(mContext);
Cannot resolve method inject view members
Upvotes: 0
Views: 688
Reputation: 3636
You can look at the source of RoboActivity
to see how it is done.
Basically, you need to call RoboInjector.injectViewMembers()
in the constructor of your viewholder. Something like this:
class ViewHolder {
@InjectView(R.id.txtView)
private TextView txtView;
@InjectView(R.id.imgView)
private ImageView imgView;
public ViewHolder(View root) {
RoboGuice.getInjector(root.getContext()).injectViewMembers(this);
}
}
Note that this will only View Injection.
If you want to do Dependency Injection (with @Inject
fields), you should use RoboInjector.injectMembersWithoutViews()
.
Upvotes: 1