zoukankan      html  css  js  c++  java
  • Andriod 按钮代码

    package com.example.test1;

     

    import android.support.v7.app.ActionBarActivity;

    import android.os.Bundle;

    import android.view.Menu;

    import android.view.MenuItem;

     

    ////////////////////

    import android.view.View;

    import android.widget.Button;

    import android.widget.EditText;

    ////////////////////

     

     

     

    public class MainActivity extends ActionBarActivity {

       

        ////////////////////

        private Button myButton;

        private EditText myText;

        ////////////////////

     

        @Override

        protected void onCreate(Bundle savedInstanceState) {

            super.onCreate(savedInstanceState);

            setContentView(R.layout.activity_main);

           

            ////////////////////

            myButton = (Button)findViewById(R.id.button1);

            myText = (EditText)findViewById(R.id.editText1);

           

            myButton.setOnClickListener(new View.OnClickListener() {

     

                @Override

                public void onClick(View v) {

                    // TODO Auto-generated method stub

                    myText.setText("弄明白监听!");

                }

            });

     

            ////////////////////

           

        }

     

     

        @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);

        }

       

      

       

     

     

     

     

     

    }

  • 相关阅读:
    转载:从git仓库中删除不必要的文件
    问题:Swiper父容器隐藏时实例化组件,组件滑动失效
    图片预加载
    移动端苹果手机:图片没有加载完成前,白色边框线是怎么来的
    bower 安装依赖提示 EINVRES Request to https://bower.herokuapp.com/packages/xxx failed with 502
    H5序列帧播放
    盟军敢死队
    二维游戏开发的点滴
    用c语言开发游戏 快乐的痛 笑着哭
    ibatis
  • 原文地址:https://www.cnblogs.com/hutie1980/p/4461475.html
Copyright © 2011-2022 走看看