Java 点击按钮后应用程序崩溃

Java 点击按钮后应用程序崩溃,java,android,Java,Android,我试着创建一个简单的应用程序MemeCrater,这是我从youtube教程中学到的。但每当我按下创建按钮时,应用程序就会崩溃 这就是我得到的错误。 错误 这是我的主要活动java文件: MainActivity.java 这是我的顶级Fragement java文件: TopSectionFragment.java 此文件是我的底层片段java文件: BottomSectionFragment.java 以下是我的XML文件: activity_main.xml Top_section_Fra

我试着创建一个简单的应用程序MemeCrater,这是我从youtube教程中学到的。但每当我按下创建按钮时,应用程序就会崩溃

这就是我得到的错误。 错误

这是我的主要活动java文件:

MainActivity.java

这是我的顶级Fragement java文件:

TopSectionFragment.java

此文件是我的底层片段java文件:

BottomSectionFragment.java

以下是我的XML文件:

activity_main.xml

Top_section_Fragment.xml

底部图片\u Fragement.xml


假设您正在尝试设置editText中的文本,那么您应该在片段中访问editText中的文本

替换

//Initialize
`private static TextView top, bottom;`

//onCreateView() Method
top = (TextView) view.findViewById(R.id.textView1);
bottom = (TextView) view.findViewById(R.id.textView2);
用这个

//Initialize
`private static EditText top, bottom;`

//onCreateView Method

//onCreateView() Method
top = (EditText) view.findViewById(R.id.toptextinput);
bottom = (EditText) view.findViewById(R.id.bottomtextinput);

在你的碎片里。希望这会有所帮助:

您的xml中没有文本视图,您正在尝试访问它。所以NPE。@SripadRaj我在底部有它(图片)(Fragenti)我在TopSectionFragment.java@bubYou需要它的时候在顶部全局做了它buttonClicked@Mrshekhar您正在尝试从top_section_fragment布局访问文本视图,该布局中不存在文本视图。因此,您将得到一个空指针。如果你想访问文本视图,你必须膨胀你的底部碎片布局。是的,我找到了,但没有工作@Sripadyou可能传递了错误的id。。更改R.id。分开并检查。仍然是相同的错误。你能发布新的日志吗?现在你的行动指挥官是空的。
package com.example.iemshekhar.memegenerator;


import android.app.Activity;
import android.app.Fragment;
import android.content.Context;
import android.os.Bundle;
import android.support.annotation.Nullable;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;

public class TopSectionFragment extends Fragment {
    private static EditText top, bottom;


    TopSectionListener activitycommander;
    public interface TopSectionListener{
        public void createMeme(String top,String bottom);
    }


    public void onAtttach(Context context)
    {
        try{
            activitycommander=(TopSectionListener)context;
        }
        catch(ClassCastException e){
            throw new ClassCastException(e.getMessage());
        }



    }

    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        View view = inflater.inflate(R.layout.top_section_fragment, container, false);

        top = (EditText)view.findViewById(R.id.toptextinput);
    bottom = (EditText) view.findViewById(R.id.bottomtextinput);

       final Button create = (Button) view.findViewById(R.id.createbutton);
        create.setOnClickListener(
                new Button.OnClickListener() {
                    public void onClick(View v) {
                       buttonClicked(v);
                    }
                }
        );
        return view;
    }

    public void buttonClicked(View v) {
    activitycommander.createMeme(top.getText().toString(),bottom.getText().toString());
    }
}
package com.example.iemshekhar.memegenerator;

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

/**
 * Created by IEmShekhar on 6/18/2016.
 */
public class BottomPictureFragment extends Fragment {

    public static TextView toptext,bottomtext;

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


        View view = inflater.inflate(R.layout.bottom_picture_fragment, container, false);

        toptext=(TextView)view.findViewById(R.id.textView1);
        bottomtext=(TextView)view.findViewById(R.id.textView2);

        return view;
    }

    public void setMemeText(String top,String bottom){
        toptext.setText(top);
        bottomtext.setText(bottom);
    }
}
<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:background="#006669"
    android:paddingTop="@dimen/activity_vertical_margin"
    android:paddingBottom="@dimen/activity_vertical_margin" tools:context=".MainActivity">

    <fragment
        android:layout_width="wrap_content"
        android:layout_height="290dp"
        android:name="com.example.iemshekhar.memegenerator.BottomPictureFragment"
        android:id="@+id/fragment2"
        android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true"
        tools:layout="@layout/bottom_picture_fragment" />

    <fragment
        android:layout_width="400dp"
        android:layout_height="wrap_content"
        android:name="com.example.iemshekhar.memegenerator.TopSectionFragment"
        android:id="@+id/fragment"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true"
        tools:layout="@layout/top_section_fragment"
        android:layout_above="@+id/fragment2" />

</RelativeLayout>
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent" android:layout_height="match_parent" android:background="#999999">

    <EditText
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/toptextinput"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="15dp"
        android:width="300dp"/>

    <EditText
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/bottomtextinput"
        android:layout_centerHorizontal="true"
        android:layout_below="@+id/toptextinput"
        android:width="300dp"
        android:layout_marginTop="30dp"
        />
    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="150dp"
        android:layout_centerHorizontal="true"
        android:text="@string/Create_text"
        android:background="#006666"
        android:textStyle="bold"
        android:id="@+id/createbutton"/>

</RelativeLayout>
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent" android:layout_height="match_parent"
    android:background="@drawable/afaque">


    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textAppearance="?android:attr/textAppearanceLarge"
        android:text="@string/toptext"
        android:textStyle="bold"
        android:textSize="25sp"
        android:background="#ffff"
        android:width="400dp"
        android:textAlignment="center"
        android:id="@+id/textView1"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true" />

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textAppearance="?android:attr/textAppearanceLarge"
        android:text="@string/bottomtext"
        android:textStyle="bold"
        android:textSize="25sp"
        android:background="#ffff"
        android:width="400dp"
        android:textAlignment="center"
        android:id="@+id/textView2"
        android:layout_alignParentBottom="true"
        android:layout_alignParentLeft="true"
        android:layout_alignParentStart="true" />

</RelativeLayout>
//Initialize
`private static TextView top, bottom;`

//onCreateView() Method
top = (TextView) view.findViewById(R.id.textView1);
bottom = (TextView) view.findViewById(R.id.textView2);
//Initialize
`private static EditText top, bottom;`

//onCreateView Method

//onCreateView() Method
top = (EditText) view.findViewById(R.id.toptextinput);
bottom = (EditText) view.findViewById(R.id.bottomtextinput);