3

我正在尝试TextViewFragmentActivity. 在else语句中,我首先创建一个Fragment,然后使用属于片段TextViewupdateItemView()方法更新,但我得到的只是一个空指针异常。

我可以更新TextViewfrom the ifstatement 但为什么我不能更新TextView from the elsestatement?

这是的代码FragmentActivity

public void toDeatailsBtn(View view){

    ItemFragment listFragment = (ItemFragment) getSupportFragmentManager()
    .findFragmentById(R.id.large_layout_list_item_fragment);

    if(listFragment != null){
        //The "if" code is working.
        listFragment.updateItemView();
    }

    // I'm swaping fragments here. I already added firstFragment to the
    //fragment_container FrameLayout in other code.
    else{
        ItemFragment secondFragment = new ItemFragment();
        FragmentTransaction transaction =
        getSupportFragmentManager().beginTransaction();
        transaction.replace(R.id.fragment_container, secondFragment);

        transaction.addToBackStack(null);
        transaction.commit();

        //This is giving me the null pointer exception, even though
        //secondFragment has been created in theory.
        secondFragment.updateItemView();
    }
}

Fragment包含updateItemView() Method:_

public class ItemFragment extends Fragment {
    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
    Bundle savedInstanceState) {
        return inflater.inflate(R.layout.item_fragment, container, false);
    }

    public void updateItemView(){
        TextView name = (TextView) getActivity()
        .findViewById(R.id.list_item_fragment);
        name.setText("TEST");
    }
}

TextView:_

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal">

        <TextView
            android:id="@+id/list_item_fragment"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:freezesText="true" />
    </LinearLayout>
</ScrollView>

最后FrameLayout我用来替换片段:

<FrameLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/fragment_container"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    tools:context=".MainFragmentActivity" />

错误日志:

01-06 00:59:08.425: E/AndroidRuntime(1610): java.lang.IllegalStateException: Could not execute method of the activity
01-06 00:59:08.425: E/AndroidRuntime(1610):     at android.view.View$1.onClick(View.java:3591)
01-06 00:59:08.425: E/AndroidRuntime(1610):     at android.view.View.performClick(View.java:4084)
01-06 00:59:08.425: E/AndroidRuntime(1610):     at android.view.View$PerformClick.run(View.java:16966)
01-06 00:59:08.425: E/AndroidRuntime(1610):     at android.os.Handler.handleCallback(Handler.java:615)
01-06 00:59:08.425: E/AndroidRuntime(1610):     at android.os.Handler.dispatchMessage(Handler.java:92)
01-06 00:59:08.425: E/AndroidRuntime(1610):     at android.os.Looper.loop(Looper.java:137)
01-06 00:59:08.425: E/AndroidRuntime(1610):     at android.app.ActivityThread.main(ActivityThread.java:4745)
01-06 00:59:08.425: E/AndroidRuntime(1610):     at java.lang.reflect.Method.invokeNative(Native Method)
01-06 00:59:08.425: E/AndroidRuntime(1610):     at java.lang.reflect.Method.invoke(Method.java:511)
01-06 00:59:08.425: E/AndroidRuntime(1610):     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:786)
01-06 00:59:08.425: E/AndroidRuntime(1610):     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:553)
01-06 00:59:08.425: E/AndroidRuntime(1610):     at dalvik.system.NativeStart.main(Native Method)
01-06 00:59:08.425: E/AndroidRuntime(1610): Caused by: java.lang.reflect.InvocationTargetException
01-06 00:59:08.425: E/AndroidRuntime(1610):     at java.lang.reflect.Method.invokeNative(Native Method)
01-06 00:59:08.425: E/AndroidRuntime(1610):     at java.lang.reflect.Method.invoke(Method.java:511)
01-06 00:59:08.425: E/AndroidRuntime(1610):     at android.view.View$1.onClick(View.java:3586)
01-06 00:59:08.425: E/AndroidRuntime(1610):     ... 11 more
01-06 00:59:08.425: E/AndroidRuntime(1610): Caused by: java.lang.NullPointerException
01-06 00:59:08.425: E/AndroidRuntime(1610):     at com.site.myapp.ItemFragment.updateItemView(ItemFragment.java:27)
01-06 00:59:08.425: E/AndroidRuntime(1610):     at com.site.myapp.MainFragmentActivity.toDetailsBtn(MainFragmentActivity.java:90)
01-06 00:59:08.425: E/AndroidRuntime(1610):     ... 14 more
4

2 回答 2

0

当您调用 commit 时,该 Fragment 事务不会立即完成,因此TextView当您调用updateItemView(). 尝试使用FragmentManager.executePendingTransaction()强制进行交易:

//...
transaction.addToBackStack(null);
transaction.commit();
getSupportFragmentManager().executePendingTransaction();
secondFragment.updateItemView();
于 2013-01-06T07:51:49.690 回答
0

myFragment类中编写一个静态方法:

public static myFragment newInstance(String txt) {
        myFragment myfragment = new myFragment();

        Bundle args = new Bundle();
        args.putString("TEXT", txt);
        myfragment.setArguments(args);

        return myfragment;
    }

之后在类的OnCreate方法中和myFragmentinflatetextView tv

tv.setText(getArguments().getString("TEXT"));

FragmentActivity主课上做:

myFragment fragment = myFragment.newInstance(textToBeSent);

之前replace

fragmentTransaction.replace(R.id.fr_dynamic, fragment);
fragmentTransaction.commit();
于 2015-03-25T09:55:49.797 回答