按钮点击更改xml活动

时间:2016-02-01 00:53:46

标签: java android xml

这是我的主要活动,我遇到了customer_layout.class和main_menu.class抛出错误的问题。它一直说“找不到符号类customer_layout或者”找不到符号类main_menu“

这是截图

enter image description here

import android.content.Intent;
import android.os.Bundle;
import android.support.design.widget.FloatingActionButton;
import android.support.design.widget.Snackbar;
import android.support.v7.app.AppCompatActivity;
import android.support.v7.widget.Toolbar;
import android.view.View;
import android.view.Menu;
import android.view.MenuItem;
import android.widget.Button;

public class MainActivity extends AppCompatActivity {
Button CJB;




    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
        setSupportActionBar(toolbar);
//CJB = findViewById(R.id.button1);
      //  CJB.setOnClickListener(this);
        FloatingActionButton fab = (FloatingActionButton) findViewById(R.id.fab);
        fab.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                Snackbar.make(view, "Replace with your own action", Snackbar.LENGTH_LONG)
                        .setAction("Action", null).show();
            }
            public void customerPage(View v){
                Intent customerPage = new Intent(MainActivity.this, Customer_Layout.class);
                startActivity(customerPage);
            }
            public void loginPage(View v){
                Intent loginPage = new Intent(MainActivity.this, Main_Menu.class);
startActivity(loginPage);
            }
        });
    }

    @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.
        int id = item.getItemId();

        //noinspection SimplifiableIfStatement
        if (id == R.id.action_settings) {
            return true;
        }

        return super.onOptionsItemSelected(item);
    }
}

activity_main.xml中

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true"
    tools:context="com.example.andy.androidautoprototype.MainActivity">

    <android.support.design.widget.AppBarLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:theme="@style/AppTheme.AppBarOverlay">

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            android:background="?attr/colorPrimary"
            app:popupTheme="@style/AppTheme.PopupOverlay" />

    </android.support.design.widget.AppBarLayout>

    <include layout="@layout/content_main" />

    <android.support.design.widget.FloatingActionButton
        android:id="@+id/fab"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="bottom|end"
        android:onClick="loginPage"
        android:layout_margin="@dimen/fab_margin"
        android:src="@android:drawable/ic_dialog_email" />

</android.support.design.widget.CoordinatorLayout>

2 个答案:

答案 0 :(得分:0)

Main_Menu.xml和Customer_layout.xml不是类,它们是XML文件。您需要创建相应的活动,这些活动将使用这些XML文件作为内容视图。

public class MainMenuActivity extends Activity {}
public class CustomerLayoutActivity extends Activity {}

您可以使用片段,但我不太了解您的应用程序UI层次结构以进行该调用。如果你沿着这条路走下去,你会为你想要使用的每个布局创建一个Fragment类。

public class MainMenuFragment extends Fragment {}
public class CustomerLayoutFragment extends Fragment {}

然后在您正在使用的片段类的Main_Menu.xml回调中夸大那些布局Customer_Layout.xmlonCreateView()

完成后,在activity_main.xml中添加一个片段容器,例如:

<FrameLayout
    android:id="@+id/fragment_container">

</FrameLayout>

在您的活动类中,使用FragmentManager实例化您的片段类,并将其添加到事务的FragmentTransactioncommit(),它将被添加到您的片段容器中。< / p>

如果您决定采用该路线,请查看Android Fragment文档以获得更深入的了解。

答案 1 :(得分:-1)

使用android:onClick当您单击按钮时,它将转到您的活动,但请记住添加Java代码。你不能只使用android:onClick你需要java代码才能工作。

尝试以下方法:

    <Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="New Button"
    android:id="@+id/button"
    android:onClick="clickme" />

注意:请记住导入视图类。

JAVA(MainActivity.java):

    public void function clickme(View view) {
          setContentView(R.layout.[your_activity]);
    }

注意: setContentView(R.layout.[your_activity]);请勿在活动名称后添加.xml。

请查看以下文档:http://developer.android.com/reference/android/widget/Button.html