请原谅我的无知,我是编程的全新手。我正在尝试将屏幕顶部的标题添加到我的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);
}
}
答案 0 :(得分:0)
由于片段必须由活动“托管”,请尝试此
getActivity().setTitle("SumTingWong");