步步为营_Android开发课[17]_用户界面之Button(按钮)

Focus on technology, enjoy life!—— QQ:804212028
浏览链接:http://blog.csdn.net/y18334702058/article/details/44624305


  • 主题:用户界面之Button(按钮)

Button和ImageButton控件实例:

activity_main.xml源代码:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >
    <Button 
        android:id="@+id/btn"
        android:layout_height="wrap_content"
        android:layout_width="wrap_content"
        android:text="我是Button"
    />
    <ImageButton 
        android:id="@+id/imgbtn"
        android:layout_height="wrap_content"
        android:layout_width="wrap_content"
        android:src="@drawable/myimage"
    />
</LinearLayout>

在MainActivity.java里给它实例化并加上按钮点击的监听事件:

import android.app.Activity;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.ImageButton;

public class MainActivity extends Activity {

    private Button btn;
    private ImageButton imgbtn;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        //实例化EditText
        btn = (Button)findViewById(R.id.btn);
        imgbtn = (ImageButton)findViewById(R.id.imgbtn);

        btn.setOnClickListener(new OnClickListener(){

            @Override
            public void onClick(View arg0) {
                // TODO Auto-generated method stub
                Log.v("------------", "我是Button");
            }

        });

        imgbtn.setOnClickListener(new OnClickListener(){

            @Override
            public void onClick(View arg0) {
                // TODO Auto-generated method stub
                Log.v("------------", "我是ImageButton");
            }

        });
    }
}

运行结果:

技术分享

点击第一个按钮:
Logcat窗口显示
技术分享

点击第二个按钮:
Logcat窗口显示
技术分享

Focus on technology, enjoy life!—— QQ:804212028
浏览链接:http://blog.csdn.net/y18334702058/article/details/44624305

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。