I want to use Activity extends ListActivity for PullToRefresh. But I have a use of CustomActionBar, so use of AppCompatActivity. How to solve this problem. Thanks in Advanced
public class CustomActionActivity extends ListActivity public class PullToRefreshActivity extends ListActivity { private LinkedList<String> mListItems; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.pull_to_refresh);
Instead of this:
public class CustomActionActivity extends AppCompatActivity
source share