zoukankan      html  css  js  c++  java
  • andriod 下一个页面

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

    Button button = (Button) findViewById(R.id.button);
    button.setOnClickListener(new View.OnClickListener() {
    public void onClick(View v) {
    // Perform action on click
    //增加自己的代码......
    //Button pButton = (Button) findViewById(R.id.button);
    //pButton.setText("OnClick. " + " ....");
    GoToMainActivity();
    }
    });

    }

    /**
    * 进入主界面
    */
    private void GoToMainActivity() {
    Intent i = new Intent(this,Main2Activity.class);
    startActivity(i);
    finish();
    }

    
    
      @Override
        protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.activity_main);
    
            Button button = (Button) findViewById(R.id.button);
            button.setOnClickListener(new View.OnClickListener() {
                public void onClick(View v) {
                    // Perform action on click
                    //增加自己的代码......
                    //Button pButton = (Button) findViewById(R.id.button);
                    //pButton.setText("OnClick. " + " ....");
                    GoToMainActivity();
                }
            });
    
        }
    
        /**
         * 进入主界面
         */
       private void GoToMainActivity() {
            Intent i = new Intent(this,Main2Activity.class);
            startActivity(i);
            finish();
        }
    
    
    
    
    
  • 相关阅读:
    redis 一主二从三哨兵
    java 调用axis2 webservice
    oracle 自增ID
    yum安装命令的使用方法
    SLES 10安装Oracle10gR2笔记
    信息系统集成资质等级评定条件(暂行)
    ionic imgBase64
    IOS 断点下载
    IOS JSON
    citrix更换vcenter后所需改动几张表
  • 原文地址:https://www.cnblogs.com/gisoracle/p/7082633.html
Copyright © 2011-2022 走看看