android开发按钮颜⾊,Android编程实现简单设置按钮颜⾊的⽅
本⽂实例讲述了Android编程实现简单设置按钮颜⾊的⽅法。分享给⼤家供⼤家参考,具体如下:
1.⼯程⽬录
a.在res⽬录-新建drawble⽂件夹放⼊⾃定义图⽚
l
android编程入门指南 pdfandroid:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello"
/>
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#000000"
android:src="@drawable/sy"
/>
3.类代码
package com.YANSE;
import android.app.Activity;
import android.os.Bundle;
import android.widget.ImageButton;
public class YANSE extends Activity {
private ImageButton Image =null;
@Override
public void onCreate(Bundle savedInstanceState) {
setContentView(R.layout.main);
Image=(ImageButton)findViewById(R.id.button);
}
}
希望本⽂所述对⼤家Android程序设计有所帮助。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。