繁体   English   中英

单击ActionBar菜单返回null时显示片段

[英]Show fragment when click ActionBar menu return null

单击动作栏菜单项时,我想显示/隐藏片段。 但是,当我单击时,我的应用程序给我错误。 片段首次运行。 当我想隐藏片段应用程序时,请给出null错误。

我怎么解决这个问题 ?

现在谢谢。

logcat的

01-26 03:48:40.942    2295-2295/test.sy.myapplication E/AndroidRuntime﹕ FATAL EXCEPTION: main
java.lang.NullPointerException
        at android.app.BackStackRecord.run(BackStackRecord.java:661)
        at android.app.FragmentManagerImpl.execPendingActions(FragmentManager.java:1435)
        at android.app.FragmentManagerImpl$1.run(FragmentManager.java:441)
        at android.os.Handler.handleCallback(Handler.java:730)
        at android.os.Handler.dispatchMessage(Handler.java:92)
        at android.os.Looper.loop(Looper.java:137)
        at android.app.ActivityThread.main(ActivityThread.java:5103)
        at java.lang.reflect.Method.invokeNative(Native Method)
        at java.lang.reflect.Method.invoke(Method.java:525)
        at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:737)
        at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:553)
        at dalvik.system.NativeStart.main(Native Method)

LayerList.Java

package test.sy.myapplication;

import android.os.Bundle;
import android.support.annotation.Nullable;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;


public class LayerList extends Fragment {

@Override
public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
    View mView = inflater.inflate(R.layout.layerlist,container,false);
    return mView;

}
}

MainActivity.Java

package test.sy.myapplication;

import android.app.FragmentManager;
import android.app.FragmentTransaction;
import android.support.v7.app.ActionBarActivity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;


public class MainActivity extends ActionBarActivity {

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


@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.menu_main, menu);
    return true;
}




@Override
public boolean onOptionsItemSelected(MenuItem item) {
    // Handle action bar item clicks here. The action bar will
    // automatically handle clicks on the Home/Up button, so long
    // as you specify a parent activity in AndroidManifest.xml.
    switch (item.getItemId()) {
        case R.id.action_settings:
            return true;
        case R.id.showsth:

            FragmentManager fm = getFragmentManager();
            FragmentTransaction ft = getFragmentManager().beginTransaction();
            ft.setCustomAnimations(android.R.animator.fade_in,
                    android.R.animator.fade_out);
            ft.show(fm.findFragmentById(R.id.fragment));
            ft.commit();
            return true;
        default:
            return super.onOptionsItemSelected(item);
    }
}
}

ft.show(fm.findFragmentById(R.id.fragment));

这条线导致问题

fm.findFragmentById(R.id.fragment)返回null。

在此行中,您尝试在layout/activity_main找到一个片段,该片段先前已添加到R.id.fragment 如果您之前没有添加或替换片段,则很明显返回空AMK

我解决了这个问题。

这种情况是由于添加片段而没有任何帧布局引起的。

一旦将framelayout添加到主活动中。 并给它id;

<RelativeLayout 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" android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin" tools:context=".MainActivity">

<FrameLayout
    android:layout_width="200dp"
    android:layout_height="450dp"

    android:layout_centerVertical="true"
    android:layout_alignParentRight="true"
    android:layout_alignParentEnd="false"
    android:id="@+id/frameLayout"></FrameLayout>

第二;

创建具有其活动性的片段。 在此示例中,我们的片段名称可能是FragmentTest.java,我们的Fragments活动可能是fragment_activity.xml。

并在主要活动中添加片段; 在Oncreate方法中,您应该添加此行;

FragmentTest Mfragmenttest = new FragmentTest();
FragmentManager fm = getSupportFragmentManager();
                    FragmentTransaction ft = fm.beginTransaction();
//R.id.frameLayout is our frame layouts id. 
 ft.add(R.id.frameLayout, Mfragmenttest , "Hello Fragment");
ft.commit

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM