3

我按照这个人关于如何制作 ActionBar的教程进行操作。假设我想更改其中一个片段内的 TextView。所以我在我的 StartActivity.java 上添加了这个,在 onCreate 下:

TextView textview = (TextView) findViewById(R.id.textView1);
textview.setText("HI!");

当我启动我的应用程序时,它崩溃了。有人可以指出我正确的方向吗?

我希望有人花时间看一下这个家伙的教程,因为他的布局与我的基本相同。谢谢你。

4

4 回答 4

9

如果你想改变你的组件,我建议你在片段中创建一个方法,如下所示:

    import android.os.Bundle;
    import android.support.v4.app.Fragment;
    import android.view.LayoutInflater;
    import android.view.View;
    import android.view.ViewGroup;
    import android.widget.TextView;

    public class DetailFragment extends Fragment {

        @Override
        public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
            View view = inflater.inflate(R.layout.details, container, false);
            return view;
        }


        public void setText(String text){
            TextView textView = (TextView) getView().findViewById(R.id.detailsText);
            textView.setText(text);
        }

    }
于 2013-05-14T09:14:24.243 回答
5

您可以尝试用 getActivity() 替换 getView() 吗?

public void setText(String text){
        TextView textView = (TextView) getActivity().findViewById(R.id.detailsText);
        textView.setText(text);
    }
于 2015-09-21T07:06:21.507 回答
2

我在这里找到了答案,并在堆栈溢出

它使用充气机:(对我来说它有效)


public class MyFragment extends Fragment {

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        View inf = inflater.inflate(R.layout.fragment_place, container, false);
        TextView tv = (TextView) inf.findViewById(R.id.textview);
        tv.setText("New text");
        return inf;
    }
}
于 2017-03-03T19:40:29.803 回答
0

在您的主要活动中,像这样实例化您的片段类

    public class MainActivity extends AppCompatActivity {
          private YourFragmentClass your_fragment;

          @Override
          protected void onCreate(Bundle savedInstanceState) {
             super.onCreate(savedInstanceState);
             setContentView(R.layout.activity_main);

              your_fragment = new YourFragmentClass("pass the string value here")
    }
}

在您的片段类中,您可以像这样获取字符串和 setText

    public class YourFragmentclass extends Fragment {

     private String your_text;


      public YourFragmentClass(String your_text) {
       this.your_text = your_text;
      }


      @Override
      public View onCreateView(LayoutInflater inflater, ViewGroup container,
          Bundle savedInstanceState) {
        // Inflate the layout for this fragment
        View view = (View)inflater.inflate(R.layout.fragment_layout, container, false);

       //set the text of your text view
        TextView textView = (TextView) view.findViewById(R.id.text_view_id);
        textView.setText(your_text);
    }
}
于 2020-05-15T12:02:02.587 回答