我有一个类,它是使用android hive代码here制作的片段。现在,由于这里的每个类都扩展了片段,我想在一个代码类中实现this。假设Home类是我想要显示的选项卡,其中包含多个选项,比如电影,游戏等。这是不可能的,它表示要实现Actionbar.tab监听器,但这是不可用的。
以下是Home片段的代码:
HomeFragment.java
package info.androidhive.slidingmenu;
import android.app.Fragment;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
public class HomeFragment extends Fragment {
public HomeFragment(){}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View rootView = inflater.inflate(R.layout.fragment_home, container, false);
return rootView;
}
}
现在我想在这个主片段中实现制表符。请回答。提前完成。