Here is my activity code
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate( savedInstanceState );
setContentView( R.layout.activity_engineer_recycler );
String value = "hello";
}
Here is my class file :
public class complaintAdapter{
//code here
}
Now can anyone help me how pass that "hello" from activity to class
Create a constructor in your ComplaintAdapter class
Then when you create the object of this class pass the value to constructor