请原谅我的无知,我是编程的新手。我正在尝试将屏幕顶部的标题添加到我的 android 应用程序的水平视图滑动部分。我想我应该说:
setTitle("title goes here");
在下面的代码中的某处,但我不确定如何/在哪里?
这是第一个片段的代码:
import com.viewpagerindicator.TitlePageIndicator;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.support.v4.view.ViewPager;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
public class Fragment1 extends Fragment{
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState){
return inflater.inflate(R.layout.fragment_1, null);
}
}