Kotlin安卓开发

1.配置Android Studio

a.在Project对应的build.gradle文件中添加如下代码:
buildscript {
   ext.kotlin_version ='1.2.30' //kotlin版本
    ext.anko_version ='0.8.2' //anko是方便kotlin开发android的库,不需要findById()...
    repositories {
            jcenter()
            google()
    }

dependencies {
        classpath'com.android.tools.build:gradle:3.1.3'
        classpath"org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
        classpath"org.jetbrains.kotlin:kotlin-android-extensions:$kotlin_version"
    }
}
b.在module对应的build.gradle文件 中添加代码:

添加插件

apply plugin: 'kotlin-android'
applyplugin:'kotlin-android-extensions'

添加依赖库

 implementation"org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"

2.创建工程

使用android3.1.3创建kotlin

3365026-bb212eff10c5d9b1.png

勾选红色部分,不需要自己配置了上面信息了

引用了anko,简化了好多工作,例如:

按钮的点击事件:

buttonID.onClick { ... }

intent跳转:

startActivity<类名>("key" to value, "key1" to "value1")

打开浏览器:

browse("https://www.baidu.com")

分享:

share("分享", "subject")

发邮件:

email("邮箱地址", "subject", "text")

Toast:

toast("Hello world")

toast(R.string.xx)

longToast("Hello world")

对话框:

alert("内容", "标题") {

positiveButton("确定") {... }

negativeButton("取消") { ... }

}.show()

kotlin实践

如图:

TIM图片20190522171033.png

使用kotlin语言实现这个设置界面,首先 创建一个实现 AnkoComponent接口的类

class SettingUI :AnkoComponent<SettingAct>{
    override fun createView(ui: AnkoContext<SettingAct>): View = with(ui) {
        verticalLayout {
            backgroundColor = Color.parseColor("#1c1e21")
            relativeLayout {
                backgroundColor = Color.BLACK
                textView("设置"){
                    textColor = Color.WHITE
                    textSize = 20f
                }.lparams(wrapContent, wrapContent){
                    centerInParent()
                    centerVertically()
                }

                imageView(R.mipmap.ic_back).lparams(wrapContent, wrapContent){
                    alignParentLeft()
                    centerVertically()
                }
            }.lparams(matchParent, dip(58)) {
                setMargins(0,0,0,10)
            }

            relativeLayout {
                backgroundColor = Color.parseColor("#1c1e21")
                textView("单位设置"){
                    textColor = Color.WHITE
                    textSize = 16f
                }.lparams(wrapContent,  wrapContent){
                    centerVertically()
                    setMargins(dip(10),0,0,0)
                }

                imageView(R.mipmap.arrow_gray).lparams(wrapContent, wrapContent){
                    alignParentRight()
                    centerVertically()
                }
                onClick {
                    toast("点击了单位设置")
                }

                view { backgroundColor = Color.parseColor("#141517") }.lparams(matchParent,dip(1)){
                    setMargins(dip(10),0,0,0)
                    alignParentBottom()
                }
            }.lparams(matchParent, dip(48))

            relativeLayout {
                backgroundColor = Color.parseColor("#1c1e21")
                var weeklyTv = textView("星期开始日"){
                    textColor = Color.WHITE
                    textSize = 16f
                }.lparams(wrapContent,  wrapContent){
                    centerVertically()
                    setMargins(dip(10),0,0,0)
                }

                textView("周日"){
                    textColor = Color.WHITE
                    textSize = 13f
                    val rightDrawable = ctx.resources.getDrawable(R.mipmap.arrow_gray)
                    rightDrawable.setBounds(0,0,rightDrawable.minimumWidth,rightDrawable.minimumHeight);
                    setCompoundDrawables(null,null,rightDrawable,null)
                    compoundDrawablePadding = dip(3)
                }.lparams(wrapContent,  wrapContent){
                    centerVertically()
                    alignParentRight()
                }
                onClick {
                    toast(weeklyTv.text)
                }

                view { backgroundColor = Color.parseColor("#141517") }.lparams(matchParent,dip(1)){
                    setMargins(dip(10),0,0,0)
                    alignParentBottom()
                }
            }.lparams(matchParent, dip(48))

            relativeLayout {
                backgroundColor = Color.parseColor("#1c1e21")
                textView("账号管理"){
                    textColor = Color.WHITE
                    textSize = 16f
                }.lparams(wrapContent,  wrapContent){
                    centerVertically()
                    setMargins(dip(10),0,0,0)
                }

                imageView(R.mipmap.arrow_gray).lparams(wrapContent, wrapContent){
                    alignParentRight()
                    centerVertically()
                }
                onClick {
                    toast("账号管理")
                }

                view { backgroundColor = Color.parseColor("#141517") }.lparams(matchParent,dip(1)){
                    setMargins(dip(10),0,0,0)
                    alignParentBottom()
                }
            }.lparams(matchParent, dip(48))

            relativeLayout {
                backgroundColor = Color.parseColor("#1c1e21")
                var weeklyTv = textView("APP版本"){
                    textColor = Color.WHITE
                    textSize = 16f
                }.lparams(wrapContent,  wrapContent){
                    centerVertically()
                    setMargins(dip(10),0,0,0)
                }

                textView("v.${BuildConfig.VERSION_NAME}"){
                    textColor = Color.WHITE
                    textSize = 13f
                    val rightDrawable = ctx.resources.getDrawable(R.mipmap.arrow_gray)
                    rightDrawable.setBounds(0,0,rightDrawable.minimumWidth,rightDrawable.minimumHeight);
                    setCompoundDrawables(null,null,rightDrawable,null)
                    compoundDrawablePadding = dip(3)
                }.lparams(wrapContent,  wrapContent){
                    centerVertically()
                    alignParentRight()
                }
                onClick {
                    toast(weeklyTv.text)
                }

                view { backgroundColor = Color.parseColor("#141517") }.lparams(matchParent,dip(1)){
                    setMargins(dip(10),0,0,0)
                    alignParentBottom()
                }
            }.lparams(matchParent, dip(48))

            button("退出登录"){
                textColor = Color.WHITE
                textSize = 20f
                backgroundColor = Color.parseColor("#ff1353")
            }.lparams(dip(300),dip(50)){
                setMargins(0,dip(10),0,0)
                setGravity(Gravity.CENTER_HORIZONTAL)
            }
        }
    }
}

在SettingAct中调用:

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