更新选项卡式活动片段中的TextView文本

时间:2017-01-21 11:15:40

标签: android android-fragments textview

我有一个标签式活动,因为有两个片段。一个片段中有一些TextView。但是我无法更新这些文本视图的文本。我尝试了很多方法。这是代码。

    public static class Holder extends Fragment{
    private static final String ARG_SECTION_NUMBER1 = "section_number";
    public Holder(){

    }
    TextView Name, Age, Medicine, Doctor, CareTaker;

    public static Holder newInstance(int sectionNumber){
        Holder fragment1 = new Holder();
        Bundle args1 = new Bundle();
        args1.putInt(ARG_SECTION_NUMBER1,sectionNumber);
        fragment1.setArguments(args1);
        return fragment1;
    }

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
                             Bundle savedInstanceState) {

        View rootView = inflater.inflate(R.layout.profile,container,false);
        TextView Name = (TextView) rootView.findViewById(R.id.fName);
        Name.setText("No Name");
        return rootView;
    }

我已经从XML中为这些TextViews提供了一些预先定义的值。

0 个答案:

没有答案