我想在xml中实现类似beahvior的数组。
给出:
{
"J": [
{
"J" : [
{
"J": [
{
"J": [
{
"J": [
{
"n": 9
}
]
}
]
}
]
}
]
}
]
}
此线性布局的复制粘贴将需要更改所有新的“ android:id” 而这样会更容易:
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<ToggleButton
android:id="@+id/togCat0"
style="@style/toggleButton"/>
<ToggleButton
android:id="@+id/togCat1"
style="@style/toggleButton"/>
<ToggleButton
android:id="@+id/togCat2"
style="@style/toggleButton"/>
</LinearLayout>
有可能吗?