0

I am implementing the ActionBar.TabListener in My Tab Fragment .

I updated the API 22, After updating it showing ActionBar.TabListener and ActionBarActivity is deprecated.

Like this i have used in my code

public class Tabview_Landing extends ActionBarActivity  implements ActionBar.TabListener 
{
}

Link help me to solve this.

madlymad
  • 6,367
  • 6
  • 37
  • 68
Kumar
  • 969
  • 2
  • 22
  • 56

1 Answers1

5

ActionBarActivity was replaced by AppCompatActivity.

Action bar tabs can be replaced by:

CommonsWare
  • 986,068
  • 189
  • 2,389
  • 2,491