使用anko 抛弃XML

前端之家收集整理的这篇文章主要介绍了使用anko 抛弃XML前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

anko

anko 是一款结合kotlin语言抛弃布局xml的工具,使用他就可以不用写布局xml代码

举个栗子

如果我们需要实现一个功能 点击按钮toast弹出输入框输入的字符(如下效果图)

普通方式实现这样一个功能,可能我们会这么做
- 创建布局xml文件

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" tools:context="com.github.jokar.ankotest.MainActivity">
  3.  
  4. <EditText android:id="@+id/edit" android:layout_width="match_parent" android:layout_height="wrap_content"/>
  5.  
  6. <Button android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginTop="10dp" android:text="showEdit" android:onClick="showEdit"/>
  7. </LinearLayout>
  • 在activity里初始化输入框和 写点击事件
  1. 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() } }
但是如果我们使用anko就不同了,我们不需要XML文件了,然后修改activity如下
  1. 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,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里使用anko

在fragment里使用还是比较容易的;只需要在最外层加上UI {}.view就可以使用了;样例如下:

  1. class Fragment1 : Fragment() {
  2.  
  3. var swipeRefreshLayout: SwipeRefreshLayout? = null
  4. var recyclerView: RecyclerView? = null
  5.  
  6. override fun onCreateView(inflater: LayoutInflater?,container: ViewGroup?,savedInstanceState: Bundle?): View? {
  7. return super.onCreateView(inflater,container,savedInstanceState)
  8. }
  9.  
  10. /** * createView */
  11. fun createView(): View {
  12. return UI {
  13. linearLayout {
  14. //swipeRefreshLayout
  15. swipeRefreshLayout = swipeRefreshLayout {
  16. setColorSchemeResources(android.R.color.holo_blue_bright)
  17. setOnRefreshListener {
  18. getData()
  19. }
  20. //recyclerView
  21. recyclerView = recyclerView {
  22. layoutManager = LinearLayoutManager(context)
  23. backgroundColor = Color.parseColor(@H_301_270@"#f3f3f3")
  24. }
  25. }.lparams(width = matchParent,height = matchParent)
  26.  
  27. }
  28. }.view
  29. }
  30.  
  31. fun getData() {
  32.  
  33. }
  34. }

这样就行了,使用很简单


在Adapter里使用

这里介绍如何在非activity,fragment里使用anko,也很简单使用到了with字符,例如这样:

  1. fun createItemView(context: Context): View {
  2. return with(context) {
  3. linearLayout {
  4. lparams(width = matchParent,height = wrapContent)
  5. cardView {
  6. linearLayout {
  7. id = R.id.percentFrameLayout
  8. backgroundResource = selectableItemBackground(context)
  9. lparams(width = matchParent,height = dip(80))
  10. orientation = LinearLayout.VERTICAL
  11.  
  12. textView {
  13. id = R.id.text
  14. gravity = Gravity.LEFT
  15. textSize = 17f
  16. textColor = Color.BLACK
  17. }.lparams(width = matchParent,height = matchParent) {
  18. setPadding(dip(10),dip(10),dip(10))
  19. }
  20. }
  21. }.lparams(width = matchParent,height = wrapContent) {
  22. margin = dip(5)
  23. }
  24. }
  25. }
  26. }
  27.  
  28. fun selectableItemBackground(context: Context): Int {
  29. var outValue = TypedValue()
  30. context.theme.resolveAttribute(android.R.attr.selectableItemBackground,outValue,true)
  31. return outValue.resourceId
  32. }
  • 注意这里给控件设置了id,所以你需要在res/value文件夹下创建一个名为ids.xml文件,然后添加你所需要的id
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <resources>
  3. <item name="percentFrameLayout" type="id"/>
  4. <item name="text" type="id"/>
  5. </resources>

然后在adapter里使用就是这样:

  1. override fun onCreateViewHolder(parent: ViewGroup?,viewType: Int): ViewHolder {
  2. return ViewHolder(createItemView(context))
  3. }
  4.  
  5. inner class ViewHolder(itemView: View) : RecyclerView.ViewHolder(itemView) {
  6. var tvTitle = itemView.findViewById(R.id.text) as TextView
  7. }

引用xml布局文件

当然anko也不是那么死板的工具,他也可以引用xml布局文件很简单;使用include字符就行

  1. include<View>(R.layout.common_toolbar)

就像这样就可以了

高级用法 - 如何使用自定义view

在实际开发中anko给我们提供的控件肯定是不能满足我们的需求的,那我们怎么把自己的自定义控件使用到anko中呢,其实很简单

  1. inline fun ViewManager.customizeView(theme: Int = 0) = customizeView(theme) {}
  2.  
  3. inline fun ViewManager.customizeView(theme: Int = 0,init: CustomizeView.() -> Unit) = ankoView({ CustomizeView(it) },theme,init)
  1. * 这里的```CustomizeView```是你的自定义View
  2. * 这里的```customizeView```是你用在anko里的名称,一般就是自定义view名称,首字母小写这样的写法
  • 然后就可以在anko里这样使用了customizeView{}

anko的基本使用就到这了,后续若遇到其他问题会补充上的;若 想看anko具体在项目里使用;可以看看我这个项目,一个使用 kotlin编写的知乎日报 ;;若觉得对你有用欢迎点赞和star

猜你在找的XML相关文章