问题
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.
回答1:
ActionBarActivity was replaced by AppCompatActivity.
Action bar tabs can be replaced by:
TabLayout from the Android Design Support Library, with or without a ViewPager; or
a
ViewPagerand your favorite other tab solution for it, whether that bePagerTabStripor any number of third-party tab implementations; orFragmentTabHost
来源:https://stackoverflow.com/questions/31268916/actionbaractivity-and-actionbar-tablistener-is-deprecated-inside-android-tab-fra