Reputation: 97
Im trying to implement contextual actionbar in my app. However, when I try to let the Startactionmode method in my adapter, I could not find a way to do so.
I have tried :
mActionMode = ((MainActivity)c).startActionMode(new MyActionModeCallback());
and it gives me an error
java.lang.NullPointerException: Attempt to invoke virtual method ' at CustomerListAdapter$ViewHolder$1.onClick(CustomerListAdapter.java:62)
java:62 is
mActionMode = ((MainActivity)c).startActionMode(new MyActionModeCallback());
btw, Im importing import android.view.ActionMode; and its an tabs fragment inside an mainactivity implement actionbaractivity
my adapter class
public class CustomerListAdapter extends RecyclerView.Adapter<CustomerListAdapter.ViewHolder>{
public ViewHolder(final View itemView,int ViewType, final Context c) {
and I set
itemView.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
mActionMode = ((MainActivity)c).startActionMode(new MyActionModeCallback());
}
});
my adapter code is below
package com.thecueapps.cue_business;
import android.content.Context;
import android.support.v7.widget.CardView;
import android.support.v7.widget.RecyclerView;
import android.view.ActionMode;
import android.view.LayoutInflater;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageView;
import android.widget.TextView;
import com.parse.ParseUser;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.List;
public class CustomerListAdapter extends RecyclerView.Adapter<CustomerListAdapter.ViewHolder>{
protected List<ParseUser> mCustomers;
Context context;
public static class ViewHolder extends RecyclerView.ViewHolder {
TextView Name_fiedl;
TextView Number_ppl_field;
TextView Time_field;
Context contxt;
Context contxt1;
private CardView cardView;
private ImageView circleview;
public ActionMode mActionMode;
public ViewHolder(final View itemView,int ViewType, final Context c) { // Creating ViewHolder Constructor with View and viewType As a parameter
super(itemView);
contxt = c;
//itemView.setClickable(true);
//itemView.setOnClickListener(this);
// Here we set the appropriate view in accordance with the the view type as passed when the holder object is created
Name_fiedl = (TextView) itemView.findViewById(R.id.text_name); // Creating TextView object with the id of textView from item_row.xml
Number_ppl_field = (TextView) itemView.findViewById(R.id.number_ppl);// Creating ImageView object with the id of ImageView from item_row.xml
circleview=(ImageView) itemView.findViewById(R.id.circle_ppl);
Time_field=(TextView) itemView.findViewById(R.id.text_time);
itemView.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
/* Toast.makeText(itemView.getContext(), "hi "
, Toast.LENGTH_SHORT).show();*/
mActionMode = ((MainActivity)c).startActionMode(new MyActionModeCallback());
}
});
//Add Expand Area to a Card
cardView = (CardView) itemView.findViewById(R.id.card_view);
cardView.setRadius(0);
}
}
CustomerListAdapter(List<ParseUser> customer){ // MyAdapter Constructor with titles and icons parameter
// titles, icons, name, email, profile pic are passed from the main activity as we
mCustomers=customer;
//in adapter
}
@Override
public CustomerListAdapter.ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
View v = LayoutInflater.from(parent.getContext()).inflate(R.layout.list_row,parent,false); //Inflating the layout
ViewHolder vhItem = new ViewHolder(v,viewType,context); //Creating ViewHolder and passing the object of type view
return vhItem; // Returning the created object
//inflate your layout and pass it to view holder
}
@Override
public void onBindViewHolder(CustomerListAdapter.ViewHolder holder, int position) {
ParseUser customer=mCustomers.get(position);
holder.Name_fiedl.setText(customer.getString(ParseConstants.KEY_USER_REAL_NAME)); // Setting the Text with the array of our Titles
holder.Number_ppl_field.setText(String.valueOf(customer.getInt(ParseConstants.KEY_CUSTOMER_NUMBER_PPL)));// Settimg the image with array of our icons
String time=customer.getString(ParseConstants.KEY_CUSTOMER_TIME);
SimpleDateFormat dateFormat = new SimpleDateFormat("MM/dd/yyyy h:mm:ss a");
SimpleDateFormat dateFormat2 = new SimpleDateFormat("hh:mm aa");
try {
Date date = dateFormat.parse(time);
String out= dateFormat2.format(date);
holder.Time_field.setText(out);
//Log.e("Time", out);
} catch (ParseException e) {
}
if(customer.getInt(ParseConstants.KEY_CUSTOMER_NUMBER_PPL)==3){
holder.circleview.setImageResource(R.color.lightblue500);
}
else if(customer.getInt(ParseConstants.KEY_CUSTOMER_NUMBER_PPL)==4){
holder.circleview.setImageResource(R.color.lightblue500);
}
else if(customer.getInt(ParseConstants.KEY_CUSTOMER_NUMBER_PPL)==5){
holder.circleview.setImageResource(R.color.lightgreen500);
}
else if(customer.getInt(ParseConstants.KEY_CUSTOMER_NUMBER_PPL)>5){
holder.circleview.setImageResource(R.color.lightgreen500);
}
}
@Override
public int getItemCount() {
return mCustomers.size(); // the number of items in the list will be +1 the titles including the header view.
}
public void remove(String item) {
int position = mCustomers.indexOf(item);
mCustomers.remove(position);
notifyItemRemoved(position);
}
}
class MyActionModeCallback implements ActionMode.Callback{
@Override
public boolean onCreateActionMode(ActionMode actionMode, Menu menu) {
actionMode.getMenuInflater().inflate(R.menu.menu_login, menu);
return false;
}
@Override
public boolean onPrepareActionMode(ActionMode actionMode, Menu menu) {
actionMode.setTitle("hihi");
return false;
}
@Override
public boolean onActionItemClicked(ActionMode actionMode, MenuItem menuItem) {
return false;
}
@Override
public void onDestroyActionMode(ActionMode actionMode) {
}
}
Because my adapter is inside the fragment. this is what i tried and still facing the problem.
In my fragment :
mAdapter = new CustomerListAdapter(mCustomers, getActivity());
in my adapter :
CustomerListAdapter(List < ParseUser > customer, Activity Activity)
{ // MyAdapter Constructor with titles and icons parameter
// titles, icons, name, email, profile pic are passed from the main activity as we
mCustomers = customer;
mActivity= Activity;
//in adapter
}
for my onclicklistener:
itemView.setOnClickListener(new View.OnClickListener() { public void onClick(View v) {
mActionMode = mActivity.startActionMode(new MyActionModeCallback());
}
});
but im still facing error showing non-static field can not be apply to static field?
Upvotes: 1
Views: 2655
Reputation: 385
in activity
public class Main extends AppCompatActivity {
public Toolbar toolbar;
AdapterEXT mAdapter;
.....
@Override
protected void onCreate(Bundle savedInstanceState) {
toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
assert getSupportActionBar() != null;
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
getSupportActionBar().setDisplayShowHomeEnabled(true);
......
List<DataXXX> data = new ArrayList<>();
mAdapter = new AdapterEXT(Main.this , toolbar, data);
in adapter
class AdapterEXT extends RecyclerView.Adapter<RecyclerView.ViewHolder> {
public Context context;
public Toolbar toolbar;
AdapterEXT (Context context, Toolbar toolbar, List<DataXXX> dataXXX) {
this.context = context;
this.toolbar=toolbar;
this.dataXXX = dataXXX;
}
where you want in adapter
toolbar.setTitle(context.getString(R.string.YourTXTfromXML));
Upvotes: 0
Reputation: 132982
Here:
mActionMode = ((MainActivity)c).startActionMode(new MyActionModeCallback());
Probably c
object of Context is null.
For getting Activity Context in CustomerListAdapter
class use class constructor :
private Acivity mActivity;
public CustomerListAdapter(Activity mActivity){
this.mActivity=mActivity;
....
}
Use mActivity
for calling startActionMode
method from Activity:
mActionMode = mActivity.startActionMode(new MyActionModeCallback());
And from MainActivity
pass Activity Context using this
when creating CustomerListAdapter
class object:
CustomerListAdapter adapter=new CustomerListAdapter(this);
Upvotes: 2