Day3 按钮的相关运用

1.实现点击过后按钮里文本的改变和按钮的不可点击

1.xml配置文件
    >
<Button
    android:id="@+id/bt_login"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="登录"
    android:textColor="#ff0000"
    android:textSize="25sp"


    android:background="#0000ff"
    android:tag="1"
        />
    <Button
        android:id="@+id/bt_done"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="完成"
        android:layout_below="@+id/bt_login"
        android:layout_marginTop="20dp"
        android:enabled="false"
        />
    <Button
        android:id="@+id/bt_edit"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="编辑"
        android:layout_alignTop="@+id/bt_done"
        android:layout_alignRight="@+id/bt_login"

        />

    <EditText
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="显示的文本"
        android:textColor="@drawable/text_color"

        />
2.实现具体按钮操作
public class MainActivity extends AppCompatActivity implements  View.OnClickListener{
//boolean isnormal=true;
    Button done;
    Button edit;
    Button btn;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

          done=findViewById(R.id.bt_done);
           edit=findViewById(R.id.bt_edit);
           btn=findViewById(R.id.bt_login);

        //给按钮添加点击事件
        btn.setOnClickListener(this);
        done.setOnClickListener(this);
        edit.setOnClickListener(this);

       done.setOnClickListener(view->{
           edit.setEnabled(true);
           done.setEnabled(false);
       });
       edit.setOnClickListener(view->{
           edit.setEnabled(false);
           done.setEnabled(true);
       });

    }
 public void onClick(View view) {
        System.out.println("点击了");
        //使用的时候转化为对应的子类类型
        Button btn=(Button)view;
    if(btn.getId()==R.id.bt_login){
            if(btn.getTag().equals("1")){
                btn.setText("退出");
                btn.setTag("0");
            }else {
                btn.setText("登录");
                btn.setTag("1" );
            }
        }

      }
    }

3.注意

按钮的点击事件 通常接受一个参数:view
当按钮被点击 系统接受这个事件
并把这个事件回调给监听者
把当前被点击的按钮作为参数传递过去
Button ImageView
注意:使用的时候 必须转化为对应的类型
不建议使用

2.实现按钮形状的颜色形状的设计

1.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity"

    android:orientation="vertical">
<Button
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="分享"
    android:enabled="true"
    android:textColor="@drawable/text_color"
    />


    <EditText
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="显示的文本"
        android:textColor="@drawable/color"
        />
    <Button
        android:layout_width="100dp"
        android:layout_height="100dp"
        android:enabled="true"
        android:background="@drawable/shape_rectangle"
        />
    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="@drawable/buttonshapeandcolor"
        android:enabled="true"

        />

</LinearLayout>
image.png

corners:圆角的大小
solid:填充颜色
stroke:边框颜色 宽度
gradient;渐变色 UI-拟物化-扁平化设计
padding:内间距

2.shape模块
<shape xmlns:android="http://schemas.android.com/apk/res/android">

android:shape="rectange">
    <stroke android:color="@color/colorAccent"
        android:width="1dp"/>

<corners
    android:radius="15dp"/>
<solid
android:color="@color/colorAccent"
        />
    <gradient android:startColor="#ff0000"
        android:centerColor="#00ff00"
        android:endColor="#0000ff"
        android:gradientRadius="50dp"
        android:type="sweep"
        />
<padding
    />

</shape>
3.text模块
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <!--配置是有先后顺序的
    默认的状态必须放在后面
  如果放在前面,优先匹配一旦匹配上了 后面的设置就无效了
  -->
    <!--按下状态的颜色 pressed-->
<item android:color="#ff0000"
    android:state_pressed="true"/>

    <!--无效 无法点击的颜色enable-->
    <item android:color="#00ff00"
        android:state_enabled="false"/>
    <!--默认状态-->
    <item android:color="#000000" />


</selector>
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,875评论 6 496
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,569评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 160,475评论 0 350
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,459评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,537评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,563评论 1 293
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,580评论 3 414
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,326评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,773评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,086评论 2 330
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,252评论 1 343
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,921评论 5 338
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,566评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,190评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,435评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,129评论 2 366
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,125评论 2 352

推荐阅读更多精彩内容

  • ¥开启¥ 【iAPP实现进入界面执行逐一显】 〖2017-08-25 15:22:14〗 《//首先开一个线程,因...
    小菜c阅读 6,389评论 0 17
  •   JavaScript 与 HTML 之间的交互是通过事件实现的。   事件,就是文档或浏览器窗口中发生的一些特...
    霜天晓阅读 3,485评论 1 11
  • Swift1> Swift和OC的区别1.1> Swift没有地址/指针的概念1.2> 泛型1.3> 类型严谨 对...
    cosWriter阅读 11,094评论 1 32
  • 1、人与人的关系,沉默是疏远的开始。 2、你一直期待的东西也许不适合拥有,更适合放在心里珍惜。 3、没有人不辛苦,...
    禾利阅读 1,577评论 13 89
  • 在大理 (1) 4000米的苍山,矗立在你身边守望 你用你的蓝把灰黄的我漂染 你凝望天空,与银河对峙 与日月同辉 ...
    李鱼2019阅读 144评论 0 1