Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/java/393.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Java 我能';t从当前活动移动到另一个活动_Java_Android_Button_Android Activity - Fatal编程技术网

Java 我能';t从当前活动移动到另一个活动

Java 我能';t从当前活动移动到另一个活动,java,android,button,android-activity,Java,Android,Button,Android Activity,当尝试单击我的MainActivity中的New Activity按钮时,我的应用程序崩溃并关闭。在屏幕上显示此错误“不幸的是[应用程序名称]已停止” 我用谷歌搜索这个问题,找不到任何明确的解决办法 下面是logCat日志、第一个Java源代码(MainActivity.Java)和第二个Java源代码(seccond.Java) Logcat日志: 05-03 00:05:17.750: E/AndroidRuntime(1091): FATAL EXCEPTION: main 05-03 0

当尝试单击我的MainActivity中的New Activity按钮时,我的应用程序崩溃并关闭。在屏幕上显示此错误“不幸的是[应用程序名称]已停止” 我用谷歌搜索这个问题,找不到任何明确的解决办法

下面是logCat日志、第一个Java源代码(MainActivity.Java)和第二个Java源代码(seccond.Java)

Logcat日志:

05-03 00:05:17.750: E/AndroidRuntime(1091): FATAL EXCEPTION: main
05-03 00:05:17.750: E/AndroidRuntime(1091): Process: com.example.helloworld, PID: 1091
05-03 00:05:17.750: E/AndroidRuntime(1091): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.helloworld/com.example.helloworld.Seccond}: java.lang.IllegalArgumentException: No view found for id 0x7f05003c (com.example.helloworld:id/container) for fragment PlaceholderFragment{b2d2faf8 #0 id=0x7f05003c}
05-03 00:05:17.750: E/AndroidRuntime(1091):     at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2195)
05-03 00:05:17.750: E/AndroidRuntime(1091):     at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2245)
05-03 00:05:17.750: E/AndroidRuntime(1091):     at android.app.ActivityThread.access$800(ActivityThread.java:135)
05-03 00:05:17.750: E/AndroidRuntime(1091):     at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1196)
05-03 00:05:17.750: E/AndroidRuntime(1091):     at android.os.Handler.dispatchMessage(Handler.java:102)
05-03 00:05:17.750: E/AndroidRuntime(1091):     at android.os.Looper.loop(Looper.java:136)
05-03 00:05:17.750: E/AndroidRuntime(1091):     at android.app.ActivityThread.main(ActivityThread.java:5017)
05-03 00:05:17.750: E/AndroidRuntime(1091):     at java.lang.reflect.Method.invokeNative(Native Method)
05-03 00:05:17.750: E/AndroidRuntime(1091):     at java.lang.reflect.Method.invoke(Method.java:515)
05-03 00:05:17.750: E/AndroidRuntime(1091):     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:779)
05-03 00:05:17.750: E/AndroidRuntime(1091):     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:595)
05-03 00:05:17.750: E/AndroidRuntime(1091):     at dalvik.system.NativeStart.main(Native Method)
05-03 00:05:17.750: E/AndroidRuntime(1091):     Caused by: java.lang.IllegalArgumentException: No view found for id 0x7f05003c (com.example.helloworld:id/container) for fragment PlaceholderFragment{b2d2faf8 #0 id=0x7f05003c}
05-03 00:05:17.750: E/AndroidRuntime(1091):     at android.support.v4.app.FragmentManagerImpl.moveToState(FragmentManager.java:919)
05-03 00:05:17.750: E/AndroidRuntime(1091):     at android.support.v4.app.FragmentManagerImpl.moveToState(FragmentManager.java:1104)
05-03 00:05:17.750: E/AndroidRuntime(1091):     at android.support.v4.app.BackStackRecord.run(BackStackRecord.java:682)
05-03 00:05:17.750: E/AndroidRuntime(1091):     at android.support.v4.app.FragmentManagerImpl.execPendingActions(FragmentManager.java:1467)
05-03 00:05:17.750: E/AndroidRuntime(1091):     at android.support.v4.app.FragmentActivity.onStart(FragmentActivity.java:570)
05-03 00:05:17.750: E/AndroidRuntime(1091):     at android.app.Instrumentation.callActivityOnStart(Instrumentation.java:1171)
05-03 00:05:17.750: E/AndroidRuntime(1091):     at android.app.Activity.performStart(Activity.java:5241)
05-03 00:05:17.750: E/AndroidRuntime(1091):     at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2168)
MainActivity.java

import android.support.v7.app.ActionBarActivity;
import android.support.v4.app.Fragment;
import android.content.Intent;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.widget.Button;
import android.widget.ImageView;
import android.widget.TextView;

public class MainActivity extends ActionBarActivity {


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

        // Start

        Button btn_img = (Button) findViewById(R.id.btn_image);
        Button btn = (Button) findViewById(R.id.btn_Click);
        final TextView txt = (TextView) findViewById(R.id.txt_view);
        Button btn_avtivity = ( Button) findViewById(R.id.btn_activity);


        // For button click
        btn.setOnClickListener(new View.OnClickListener() {

            @Override
            public void onClick(View arg0) {
                txt.setText(" Amin Bassam ");
            }
        });

            // Image show
        btn_img.setOnClickListener(new View.OnClickListener() {

            @Override  
            public void onClick(View arg0) {
                   ImageView img=(ImageView)findViewById(R.id.img_view);
                   img.setImageResource(R.drawable.amin);
            }
        });

        btn_avtivity.setOnClickListener(new View.OnClickListener() {

            @Override
            public void onClick(View arg0) {

                Intent intent = new Intent(getApplicationContext(),Seccond.class);
                    startActivity(intent);

            }
        });

            // Open Activities
        if (savedInstanceState == null) {
            getSupportFragmentManager().beginTransaction()
                    .add(R.id.container, new Fragment()).commit();
        }
    }
    @Override
    public boolean onCreateOptionsMenu(Menu menu) {

        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.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.
        int id = item.getItemId();
        if (id == R.id.action_settings) {
            return true;
        }
        return super.onOptionsItemSelected(item);
    }

    /**
     * A placeholder fragment containing a simple view.
     */
}
second.java

package com.example.helloworld;

import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.support.v7.app.ActionBarActivity;
import android.view.LayoutInflater;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.view.ViewGroup;

public class Seccond extends ActionBarActivity {

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

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

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {

        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.seccond, 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.
        int id = item.getItemId();
        if (id == R.id.action_settings) {
            return true;
        }
        return super.onOptionsItemSelected(item);
    }

    /**
     * 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) {
            View rootView = inflater.inflate(R.layout.activity_seccond,
                    container, false);
            return rootView;
        }
    }

}
Activity_main.Xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/container"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="com.example.helloworld.MainActivity"
    tools:ignore="MergeRootFrame" >

    <TextView
        android:id="@+id/txt_view"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignLeft="@+id/btn_Click"
        android:layout_alignParentTop="true"
        android:layout_marginTop="98dp"
        android:textAppearance="?android:attr/textAppearanceLarge" />

    <Button
        android:id="@+id/btn_Click"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_alignParentLeft="true"
        android:layout_marginBottom="66dp"
        android:text="Click"
        tools:ignore="HardcodedText" />
"res/layout/activity_main.xml"
    <Button
        android:id="@+id/btn_image"
        style="@style/AppTheme"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignBaseline="@+id/btn_Click"
        android:layout_alignBottom="@+id/btn_Click"
        android:layout_marginLeft="16dp"
        android:layout_toRightOf="@+id/btn_Click"
        android:text="Image"
        tools:ignore="HardcodedText" />

    <ImageView
        android:id="@+id/img_view"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignLeft="@+id/btn_image"
        android:layout_centerVertical="true"
        android:scaleType="center"
        android:src="@drawable/abc_ab_solid_light_holo"
        tools:ignore="ContentDescription" />

    <Button
        android:id="@+id/btn_activity"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_alignTop="@+id/btn_image"
        android:text="New Activities"
        tools:ignore="HardcodedText" />

</RelativeLayout>

“res/layout/activity_main.xml”
second_activity.xml

<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:background="#A8B007"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context="com.example.helloworld.Seccond$PlaceholderFragment" >

</RelativeLayout>

AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.helloworld"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="19" />

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name="com.example.helloworld.MainActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

        <activity
            android:name="com.example.helloworld.Seccond"
            android:label="@string/app_name" >
        </activity>
    </application>

</manifest>

在片段类中检查这一行:

View rootView = inflater.inflate(R.layout.activity_seccond,
                container, false);
我认为返回的视图是空的

No view found for id 0x7f05003c (com.example.helloworld:id/container) for fragment PlaceholderFragment
错误是它找不到id为container的视图,片段占位符无法进入该视图

setContentView(R.layout.activity_second)

如果(savedInstanceState==null){ getSupportFragmentManager().beginTransaction() .add(R.id.container,新的占位符片段()).commit(); }

这部分代码是主要问题。在getSupportFragmentManager的add()中,它表示创建片段并将其放在具有id容器的视图中。但是setContentView中指定的布局没有id为container的视图。因此需要有一个布局文件,其中的视图(如框架)id为容器,这样当片段布局加载时,它就可以进入该视图

尝试向名为activity_frame_seccond.xml的布局添加一个文件,其中包含:

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

这是一个id为“container”的框架

在second.java中更改此行:

setContentView(R.layout.activity\u second)

为了

setContentView(R.layout.activity\u frame\u second)

看看这是否有效

在这段代码中,您使用新文件activity_frame_seccond.xml作为活动的布局,使用第一个文件activity_seccond.xml作为将放入frame元素的片段(因为它具有id容器)

如果这不起作用,请告诉我,我会再看一眼。

用这种方法试试

 @Override
        public void onClick(View arg0) {

            Intent intent = new Intent(this,Seccond.class);
                startActivity(intent);

        }

从清单中删除此行

 <activity
            android:name="com.example.helloworld.Second"
            android:label="@string/app_name" >
            >
</activity>

>

并尝试发布您的xml文件。@Lal,发布我的主xml文件和秒xml文件。
View rootView=inflater.inflate(R.layout.activity_second,container,false)
活动\u秒在哪里?
设置内容视图(R.layout.activity\u秒)在layouts文件夹ie.activity\u seccond.xml中有这样的xml文件吗???将您的AndroidManifest.xml发布到我的项目中没有Fragment类。@A.Bassam:那么这一行是什么:Placeholder Fragment extendsFragment@Lal用explanation@Arianne,不幸的是,在我的项目中,我删除了我的片段\[..].xml。创建新项目,我的问题就消失了。但我的新问题是我在第二次活动中展示的主要活动内容。谢谢您的完整回答。请将我的代码[Second]编辑到[Second]。什么??我不明白..您已经在清单中指定了Second和Second活动..请从中删除Second..这是我键入的错误,我将Second更改为Second并删除了添加行。与此Intent Intent的不同之处=新Intent(CurrentLayout.this,Second.class);我想没什么区别