上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 36 下一页
摘要: 今天学习了拖动条的用法。 代码实现: public class MainActivity extends AppCompatActivity { private SeekBar sb_normal; private TextView txt_cur; private Context mContext 阅读全文
posted @ 2021-03-03 19:43 张笑天 阅读(35) 评论(0) 推荐(0) 编辑
摘要: 今天学习了android studio中的开关按钮。 <?xml version="1.0" encoding="utf-8"?> <selector xmlns:android="http://schemas.android.com/apk/res/android"> <item android: 阅读全文
posted @ 2021-03-02 11:23 张笑天 阅读(29) 评论(0) 推荐(0) 编辑
摘要: 比起一门编程语言,软件工程的入门过程,要难得多。盖因一门语言,其语法、关键字、系统库和常用工具,总是确定而有限的。 而软件工程,作为工程学的一个门类,它肩负着在软件开发的过程中,将种种条件确定下来,将资源安排妥当,使工作过程确定清晰,产出稳定可靠的责任。 这其中的微妙和复杂,往往在经典的教材中也不能 阅读全文
posted @ 2021-02-26 20:19 张笑天 阅读(15) 评论(0) 推荐(0) 编辑
摘要: 这周我学习了fragment的使用,以及数据的传递。 阅读全文
posted @ 2021-02-25 12:02 张笑天 阅读(13) 评论(0) 推荐(0) 编辑
摘要: 今天学习了activity向activity传递数据。 Bundle bundle=new Bundle();bundle.putString("nowid",id);intent.putExtras(bundle); Bundle bundle=getIntent().getExtras();No 阅读全文
posted @ 2021-02-17 20:56 张笑天 阅读(16) 评论(0) 推荐(0) 编辑
摘要: 今天学习了fragment的动态添加。 private void replaceFragment(Fragment fragment){ Bundle bundle=new Bundle(); bundle.putString("nowid",Nowid); fragment.setArgument 阅读全文
posted @ 2021-02-16 21:02 张笑天 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 今天学习了安卓的服务,并且读了构建之法,并有所感悟。 阅读全文
posted @ 2021-02-15 20:58 张笑天 阅读(16) 评论(0) 推荐(0) 编辑
摘要: 今天学习了广播。 创建的代码入下: public class MyReceiver extends BroadcastReceiver { @Override public void onReceive(Context context, Intent intent) { Toast.makeText 阅读全文
posted @ 2021-02-12 11:24 张笑天 阅读(15) 评论(0) 推荐(0) 编辑
摘要: 今天学习了android studio的服务。 package com.runoob.androidservices; import android.app.Service; import android.os.IBinder; import android.content.Intent; impo 阅读全文
posted @ 2021-02-11 18:55 张笑天 阅读(25) 评论(0) 推荐(0) 编辑
摘要: 开始读这本书,最大的感受的感受就是软件工程原来是可以这么学的,以前学习软件工程的课程的时候,总是感觉这门课程及其枯燥无味,总是在说太多的理论,很少 会涉及到实践,甚至根本就是没有实践这个环节,所以学习很无聊,但是研究生阶段读到这本书,真的是全新的感受,首先,不仅仅只是在说理论了,加入了很多实 践的东 阅读全文
posted @ 2021-02-10 19:01 张笑天 阅读(16) 评论(0) 推荐(0) 编辑
上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 36 下一页