Путаница в расположении TextView.setText(): onCreate() против userMethod()

Мне интересно, где setText() на самом деле работает. Вот пример кода для моего вопроса. Я пропустил ненужный код с "..." эллипсом.

// fragment_main.xml
<RelativeLayout ... >

    <TextView
    android:id="@+id/hello_world"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/hello_world" />

    <Button
        android:id="@+id/button_send"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/button_send"
        android:onClick="userMethod" />

</RelativeLayout>

а также

// ActivityMain.java
public class MainActivity extends ActionBarActivity {

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

    TextView textView = (TextView) findViewById(R.id.hello_world);
    textView.setText("This cause runtime error!!");

    if (savedInstanceState == null) {
        getSupportFragmentManager().beginTransaction()
                .add(R.id.container, new PlaceholderFragment()).commit();
    } // if
} // onCreate

    /**
 * A placeholder fragment containing a simple view.
 */
public static class PlaceholderFragment extends Fragment {

    public PlaceholderFragment() {
    }

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

                         // gives a compile error about non-static finViewById here
                 // TextView textView = (TextView) findViewById(R.id.hello_world);
                 // textView.setText("Compiling Error!!");


        View rootView = inflater.inflate(R.layout.fragment_main, container,
                false);
        return rootView;
    } // onCreateView
} // PlaceholderFragment


// user defined method 
public void userMethod(View view) {
    TextView textView = (TextView) findViewById(R.id.hello_world);
    textView.setText("This run successful");
} // userMethod
} // class MainActivity

Вот что я не понимаю:

textView.setText("string") потерпеть неудачу, когда в protected void onCreate(...)

но

textView.setText("string") бежать, когда в public void userMethod(...)

еще

оба эти метода находятся в public class MainActivity extends ActionBarActivity

В чем разница??

2 ответа

Решение

TextView, видимо, находится во фрагментном макете. Вы пытаетесь получить доступ к текстовому обзору, прежде чем раздувать фрагмент, поэтому вы получаете исключение нулевого указателя.

Попробуйте установить текст внутри фрагмента метода onCreateView() или после раздувания фрагмента.

   @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
            Bundle savedInstanceState) {
        // we inflate the fragment here.
        View rootView = inflater.inflate(R.layout.fragment_main, container,
                false);
       // get the textview from inflated layout.
       TextView textView = (TextView) rootView.findViewById(R.id.hello_world);
       textView.setText("Should work");

       return rootView;
    }

На самом деле TextView в вашем fragment_main.xml и ты звонишь setText перед добавлением фрагмента в mainActivity и это сделает NullpointerException из-за отсутствия текстового представления в вашем activity_main.xml,

Другие вопросы по тегам