91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Kotlin 基礎(二)- DSL

發布時間:2020-07-19 16:16:06 來源:網絡 閱讀:400 作者:Android丶VG 欄目:移動開發

所謂 DSL 領域專用語言(Domain Specified Language/ DSL),其基本思想是“求專不求全”,不像通用目的語言那樣目標范圍涵蓋一切軟件問題,而是專門針對某一特定問題的計算機語言。

Kotlin 基礎(二)- DSL

Kotlin DSL 定義:使用 Kotlin 語言開發的,解決特定領域問題,具備獨特代碼結構的 API 。

一、DSL

DSL(domain specific language),即領域專用語言:專門解決某一特定問題的計算機語言,比如大家耳熟能詳的 SQL 和正則表達式。使用DSL的編程風格,可以讓程序更加簡單干凈、直觀簡潔。當然,我們也可以創建自己的 DSL。相對于傳統的 API, DSL 更加富有表現力、更符合人類語言習慣。

如果為解決某一特定領域問題就創建一套獨立的語言,開發成本和學習成本都很高,因此便有了內部 DSL 的概念。所謂內部 DSL,便是使用通用編程語言來構建 DSL,比如,Kotlin DSL。

1.1 常見的 DSL

常見的 DSL 在很多領域都能看到,例如:

  • 軟件構建領域 Ant
  • UI 設計師 HTML
  • 硬件設計師 VHDL
1.2 通用編程語言 vs DSL

通用編程語言(如 Java、Kotlin、Android等),往往提供了全面的庫來幫助開發者開發完整的應用程序,而 DSL 只專注于某個領域,比如 SQL 僅支持數據庫的相關處理,而正則表達式只用來檢索和替換文本,我們無法用 SQL 或者正則表達式來開發一個完整的應用。

  • DSL 供非程序員使用,供領域專家使用;
  • DSL 有更高級的抽象,不涉及類似數據結構的細節;
  • DSL 表現力有限,其只能描述該領域的模型,而通用編程語言能夠描述任意的模型;

無論是通用編程語言,還是領域專用語言,最終都是要通過 API 的形式向開發者呈現。良好的、優雅的、整潔的、一致的 API 風格是每個優秀開發者的追求,而 DSL 往往具備獨特的代碼結構和一致的代碼風格。

二、Kotlin DSL 在 Android 開發的應用

2.1 Anko

Anko 是一個 DSL (Domain-Specific Language), 它是 JetBrains 出品的,用 Kotlin 開發的安卓框架。它主要的目的是用來替代以前 XML 的方式來使用代碼生成 UI 布局。

2.1.1 使用

Anko 中, 不需要繼承其他奇怪的類,只要標準的 Activity, Fragment,FragmentActivity 或者其他任意的類

首先, 在使用 Anko 的 DSL 的類中導入 org.jetbrains.anko.* .

DSL 可以在 onCreate()中使用:

override fun onCreate(savedInstanceState: Bundle?) {
    super<Activity>.onCreate(savedInstanceState)

    verticalLayout {
        padding = dip(30)
        editText {
            hint = "Name"
            textSize = 24f
        }
        editText {
            hint = "Password"
            textSize = 24f
        }
        button("Login") {
            textSize = 26f
        }
    }
}

不需要顯示的調用 setContentView(R.layout.something), Anko 自動為 Activity(只會對Activity)進行 set content view

padding, hint 和 textSize 是 擴展屬性. 大多數 View 具有這些屬性,允許使用 text = “Some text” 代替 setText(“Some text”).

verticalLayout (一個豎直方向的 LinearLayout), editText 和 button

擴展函數. 這些函數存在與ANdroid 框架中的大部View中, Activities, Fragments ( android.support 包中的) 甚至 Context同樣適用.

如果有一個 Context 實例, 可以寫出下面的DSL結構:

val name = with(myContext) {
    editText {
        hint = "Name"
    }
}

變量 name 成為了 EditText類型.

2.1.2 Helper 方法

你可能注意到了,前面 button 方法接了一個字符串參數,這樣的Helper方法同樣使用與 TextView, EditText, Button , ImageView.

如果你不需要 View 其他的屬性,你可以省略 {} 直接寫 button(“Ok”) 或只有 button():

verticalLayout {
    button("Ok")
    button("Cancel")
}
2.1.3 Layouts 和 LayoutParams

在父布局中布局控件可能需要使用 LayoutParams.xml 中長這樣:

<ImageView 
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android_layout_marginLeft="5dip"
    android_layout_marginTop="10dip"
    android:src="@drawable/something" />

Anko 中, 在 View 的后面使用 lparams 來實現類似與 xml 的 LayoutParams。

linearLayout {
    button("Login") {
        textSize = 26f
    }.lparams(width = wrapContent) {
        horizontalMargin = dip(5)
        topMargin = dip(10)
    }
}

如果指定了 lparams,但是沒有指定 width 或者 height, 默認是 WRAP_CONTENT,但是你可以自己通過使用 named arguments指定.

注意下面一些方便的屬性:

  • horizontalMargin 同時設置 left 和 right margins
  • verticalMargin 同時設置 top 和 bottom
  • margin 同時設置4個方向的 margins
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_height="match_parent"
    android:layout_width="match_parent">

    <EditText
        android:id="@+id/todo_title"
        android:layout_width="match_parent"
        android:layout_heigh="wrap_content"
        android:hint="@string/title_hint" />

    <!-- Cannot directly add an inline click listener as onClick delegates implementation to the activity -->
    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="@string/add_todo" />

</LinearLayout>

使用 Anko 之后,可以用代碼實現布局,并且 button 還綁定了點擊事件。

verticalLayout {
    var title = editText {
        id = R.id.todo_title
        hintResource = R.string.title_hint
    }
    button {
        textResource = R.string.add_todo
        onClick { view -> {
                // do something here
                title.text = "Foo"
            }
        }
    }
}

可以看到 DSL 的一個主要優點在于,它需要很少的時間即可理解和傳達某個領域的詳細信息。

override fun onCreate(savedInstanceState: Bundle?) { 
 ? super.onCreate(savedInstanceState) 
 ? verticalLayout { 
 ? ? ? padding = dip(30) 
 ? ? ? editText { 
 ? ? ? ? hint = "Name" 
 ? ? ? ? textSize = 24f 
 ? ? ? } 
 ? ? ? editText { 
 ? ? ? ? hint = "Password" 
 ? ? ? ? textSize = 24f 
 ? ? ? } 
 ? ? ? button("Login") { 
 ? ? ? ? textSize = 26f 
 ? ? ? } 
 ? } 
 }
2.1.4 彈窗
 alert("Hi, I'm Roy", "Have you tried turning it off and on again?") { 
     yesButton { toast("Oh…") } 
     noButton {} 
 }.show()
2.1.5 異步
 doAsync { 
     // Long background task 
     uiThread { 
         result.text = "Done" 
     } 
 } 

關于我
更多信息可以點擊+關于我 , 非常希望和大家一起交流 , 共同進步

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

潜江市| 棋牌| 泗阳县| 文山县| 东乌珠穆沁旗| 措勤县| 城步| 濉溪县| 普兰店市| 华亭县| 岚皋县| 兴宁市| 阳江市| 启东市| 晋中市| 眉山市| 简阳市| 芜湖市| 微博| 龙海市| 抚州市| 兴安盟| 扎兰屯市| 宜城市| 北海市| 那曲县| 汝南县| 东方市| 峨眉山市| 海南省| 皋兰县| 夹江县| 开阳县| 澄迈县| 湖南省| 孟津县| 金山区| 沛县| 河曲县| 疏勒县| 滕州市|