摘要: 登录页面的账号和密码需要用edittext写 1 <EditText 2 android:id="@+id/et_1" 3 android:layout_width="match_parent" 4 android:layout_height="50dp" 5 android:textSize="2 阅读全文
posted @ 2022-01-07 22:43 KongLong_cm 阅读(369) 评论(0) 推荐(0)
摘要: 按钮点击出现提示框,需在xml对应的Java文件中定义方法,例如: 1 public class ButtonActivity3 extends AppCompatActivity { 2 3 @Override 4 protected void onCreate(Bundle savedInsta 阅读全文
posted @ 2022-01-07 12:24 KongLong_cm 阅读(578) 评论(0) 推荐(0)
摘要: 需要在drawable下建立xml文件,内容如下: 1 <selector xmlns:android="http://schemas.android.com/apk/res/android"> 2 <!--设置在按压时的效果--> 3 <item 4 android:state_pressed=" 阅读全文
posted @ 2022-01-07 12:01 KongLong_cm 阅读(210) 评论(0) 推荐(0)
摘要: 设置按钮的样式在drawable下建立xml文件,例如: 1 <shape xmlns:android="http://schemas.android.com/apk/res/android" 2 android:shape="rectangle"><!--形状为长方形--> 3 <!--填充颜色- 阅读全文
posted @ 2022-01-07 11:38 KongLong_cm 阅读(83) 评论(0) 推荐(0)
摘要: 在页面中的代码: 1 <Button 2 android:id="@+id/btn_2" 3 android:layout_width="match_parent" 4 android:layout_height="50dp" 5 android:text="按钮2号" 6 android:text 阅读全文
posted @ 2022-01-07 11:10 KongLong_cm 阅读(530) 评论(0) 推荐(0)