在Anko DSL中创建自定义View / ViewGroup类

时间:2016-10-20 06:51:12

标签: android kotlin anko

我想创建一个自定义视图,它只是一些Android视图的包装器。我研究了创建一个自定义ViewGroup来管理它的子视图的布局,但我并不需要这样的复杂性。我基本上想要做的是:

class MainActivity
verticalLayout {
  textView {
    text = "Something that comes above the swipe"
  }
  swipeLayout {
  }
}

class SwipeLayout
linearLayout {
  textView {
    text = "Some text"
  }
  textView {
    text = "Another text"
  }
}

原因是我想将SwipeLayout代码移动到一个单独的文件中,但我不想自己做任何复杂的布局。这可能是使用Anko吗?

编辑:根据建议,如果视图是根布局,Is it possible to reuse a layout in Kotlin Anko可以解决此问题。但是如示例中所示,我希望将其包含在另一个布局中。这可能吗?

2 个答案:

答案 0 :(得分:6)

您可以使用ViewManager。

fun ViewManager.swipeLayout() = linearLayout {
  textView {
    text = "Some text"
  }
  textView {
    text = "Another text"
  }
}
class MainActivity
  verticalLayout {
    textView {
      text = "Something that comes above the swipe"
    }
    swipeLayout {}
}

答案 1 :(得分:3)

我也在寻找类似的东西,但我发现自定义视图的最佳解决方案是这样的:

public inline fun ViewManager.customLayout(theme: Int = 0) = customLayout(theme) {}
public inline fun ViewManager.customLayout(theme: Int = 0, init: CustomLayout.() -> Unit) = ankoView({ CustomLayout(it) }, theme, init)

class CustomLayout(c: Context) : LinearLayout(c) {
    init {
        addView(textView("Some text"))
        addView(textView("Other text"))
    }
}