While running my project, I am getting the BinderProxy@b4d6acb0 error. Can I know the reason of this error. I have pasted my code below
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.custom_activity);
listView = (ListView) findViewById(R.id.list);
adapter = new CustomListAdapter(this, movieList);
listView.setAdapter(adapter);
swipeContainer = (SwipeRefreshLayout) findViewById(R.id.swipeContainer);
swipeContainer.setOnRefreshListener(new OnRefreshListener() {
@Override
public void onRefresh() {
// TODO Auto-generated method stub
//fetchTimelineAsync(0);
//Toast.makeText(getApplicationContext(), "Menu", Toast.LENGTH_SHORT).show();
//Intent i= new Intent(MainActivity.this,MainActivity.class);
//startActivity(i);
swipeContainer.setRefreshing(true);
adapter.clear();
method();
}
});