anko 是一款结合kotlin语言抛弃布局xml的工具,使用他就可以不用写布局xml代码了
如果我们需要实现一个功能 点击按钮toast弹出输入框输入的字符(如下效果图)
普通方式实现这样一个功能,可能我们会这么做
class MainActivity : AppCompatActivity() {
var edit: EditText? = null
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
edit = findViewById(R.id.edit) as EditText
}
fun showEdit(v: View) {
var string = edit?.text.toString()
Toast.makeText(applicationContext, string, Toast.LENGTH_SHORT).show()
}
}
class MainActivity : AppCompatActivity() {
var edit: EditText? = null
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
createView()
}
fun showEdit() {
var string = edit?.text.toString()
Toast.makeText(applicationContext, string, Toast.LENGTH_SHORT).show()
}
fun createView() {
linearLayout {
lparams(width = matchParent, height = matchParent)
orientation = LinearLayout.VERTICAL
edit = editText {
textSize = 15f
}.lparams(width = matchParent, height = wrapContent)
button {
text = "ShowText"
textSize = 15f
onClick {
showEdit()
}
}.lparams(width = matchParent, height = wrapContent) {
topMargin = dip(10)
}
}
}
}
这就是anko的基本用法了,跟写xml布局没有多大区别;但在实际使用过程中会发现如果不是再activity
类里想直接使用anko控件是不行的;;下面介绍开发中遇到的基本场景
在fragment里使用还是比较容易的;只需要在最外层加上UI {}.view
就可以使用了;样例如下:
这样就行了,使用很简单
class Fragment1 : Fragment() {
var swipeRefreshLayout: SwipeRefreshLayout? = null
var recyclerView: RecyclerView? = null
override fun onCreateView(inflater: LayoutInflater?, container: ViewGroup?, savedInstanceState: Bundle?): View? {
return super.onCreateView(inflater, container, savedInstanceState)
}
/**
* createView
*/
fun createView(): View {
return UI {
linearLayout {
//swipeRefreshLayout
swipeRefreshLayout = swipeRefreshLayout {
setColorSchemeResources(android.R.color.holo_blue_bright)
setOnRefreshListener {
getData()
}
//recyclerView
recyclerView = recyclerView {
layoutManager = LinearLayoutManager(context)
backgroundColor = Color.parseColor("#f3f3f3")
}
}.lparams(width = matchParent, height = matchParent)
}
}.view
}
fun getData() {
}
}
这里介绍如何在非activity,fragment里使用anko,也很简单使用到了with
字符,例如这样:
fun createItemView(context: Context): View {
return with(context) {
linearLayout {
lparams(width = matchParent, height = wrapContent)
cardView {
linearLayout {
id = R.id.percentFrameLayout
backgroundResource = selectableItemBackground(context)
lparams(width = matchParent, height = dip(80))
orientation = LinearLayout.VERTICAL
textView {
id = R.id.text
gravity = Gravity.LEFT
textSize = 17f
textColor = Color.BLACK
}.lparams(width = matchParent, height = matchParent) {
setPadding(dip(10), dip(10), dip(10), dip(10))
}
}
}.lparams(width = matchParent, height = wrapContent) {
margin = dip(5)
}
}
}
}
fun selectableItemBackground(context: Context): Int {
var outValue = TypedValue()
context.theme.resolveAttribute(android.R.attr.selectableItemBackground, outValue, true)
return outValue.resourceId
}
ids.xml
文件,然后添加你所需要的id
然后在adapter里使用就是这样:
override fun onCreateViewHolder(parent: ViewGroup?, viewType: Int): ViewHolder {
return ViewHolder(createItemView(context))
}
inner class ViewHolder(itemView: View) : RecyclerView.ViewHolder(itemView) {
var tvTitle = itemView.findViewById(R.id.text) as TextView
}
当然anko也不是那么死板的工具,他也可以引用xml布局文件很简单;使用include
字符就行
include(R.layout.common_toolbar)
就像这样就可以了
在实际开发中anko给我们提供的控件肯定是不能满足我们的需求的,那我们怎么把自己的自定义控件使用到anko中呢,其实很简单
Views.kt
文件 inline fun ViewManager.customizeView(theme: Int = 0) = customizeView(theme) {}
inline fun ViewManager.customizeView(theme: Int = 0, init: CustomizeView.() -> Unit) = ankoView({ CustomizeView(it) }, theme, init)
* 这里的```CustomizeView```是你的自定义View
* 这里的```customizeView```是你用在anko里的名称,一般就是自定义view的名称,首字母小写这样的写法
然后就可以在anko里这样使用了customizeView{}
anko的基本使用就到这了,后续若遇到其他问题会补充上的;若 想看anko具体在项目里使用;可以看看一个使用 kotlin编写的知乎日报 .