android开发最常用例子整理----(1)自定义按钮实现

android开发最常用例子整理----(1)自定义按钮实现


一、Activity

MainActivity.java源码:

技术分享

public class MainActivity extends Activity {

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


二、xml布局文件

activity_main.xml源码:

技术分享

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="@drawable/bg_button"/>
</LinearLayout>


三、相关资源

res/drawable/下的文件:

技术分享

bg_button.xml源码:

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android" >
    <item android:state_focused="true" android:drawable="@drawable/bg_button_pressed"></item>
	<item android:state_pressed="true" android:drawable="@drawable/bg_button_pressed"></item>
	<item  android:drawable="@drawable/bg_button_normal"></item>
</selector>
补充:这里除了可以设置state_focused、state_pressed状态下的样式外,还可以设置state_checked、state_selected等状态。
bg_button_normal.png:技术分享

bg_button_pressed.png:技术分享


四、效果截图

(1)自然状态下的按钮:

技术分享

(2)按压状态下的按钮:

技术分享




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