TextView和Button的区别

88888888888888888888888888888888888888888888888888

转自 https://blog.csdn.net/buptguo_iris/article/details/61624135

1、TextView中文字默认是从左上方开始&Button中文字默认是居中显示

2、TextView默认背景透明&Button默认背景灰色的

3、TextView点击无效果&Button默认状态下点击变黄色(它有一个默认的背景选择器)

4、TextView默认不拦截点击事件&Button会拦截点击事件

88888888888888888888888888888888888888888888888888

看了上面文章后,自己测试下。顺便找到源头。。。


Button com.android.internal.R.attr.buttonStyle
TextView com.android.internal.R.attr.textViewStyle

themes.xml下
    @style/Widget.Button
    @style/Widget.TextView


styles.xml下   
   


   

Button点击效果
drawable/btn_default


    
    
    
    
    
    
    

 

你可能感兴趣的:(android)