一、
首先在 drawable 文件夹下新建一个 drawable resourse file 。然后在文件中定义不同状态下的显示方式。
例:
<item android:color="#00ff00" android:state_focused="true"></item> —— 当获取光标时,颜色为绿
<item android:color="#000000" android:state_focused="false"></item> —— 失去光标时,颜色为黑色
然后在页面代码里引用:
android:textColor="@drawable/edittext_state"
再看一个设置按钮状态的例子:
<item android:state_pressed="true" android:drawable="@drawable/back"></item>
<item android:state_pressed="false" android:drawable="@drawable/newgray"></item>
然后在页面里引用:
android:background="@drawable/btn_state"
二、findviewById / Toast
findviewById 可以实现前后端的交互, toast 语句是为了给用户做提示,过一段时间后会消失。
首先,在前端页面中,每一个元素都会有一个id。
后台中:
(1)定义标签:
EditText userName; Button login,cancel;
(2)通过 findViewById 绑定:
userName = findViewById(R.id.editText2); login = findViewById(R.id.button); cancel = findViewById(R.id.button2);
(3)给标签设置响应事件:
cancel.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { Toast.makeText(MainActivity.this,userName.getText().toString(),Toast.LENGTH_LONG).show(); } });
其中,toast.makeText () 是为了显示提示,第一个参数是本类;第二个参数是显示的文本内容;第三个参数是显示的时间。
例如下: