我正在尝试为Xamarin Android中的表格行和表格分隔符设置样式。我希望在Styles.xml中以AppTheme的样式设置样式,这样我就不必在所有布局中都设置每个表格行的样式。例如,我想要可以在AppTheme样式内分配的类似“ android:tableRowStyle”的东西。我的AppTheme当前如下所示:
name="AppTheme"
parent="Base.Theme.AppCompat.Light.DarkActionBar">
<item
name="preferenceTheme">@style/preferenceTheme</item>
<item
name="android:textColorHint">@color/white</item>
<item
name="android:textViewStyle">@style/TextViewStyle</item>
<item
name="android:background">@android:color/transparent</item>
<item
name="android:popupTheme">@style/AlertDialog</item>
研究使我进入了Android的R.styleable
元素列表,但找不到与表视图或表元素相关的任何内容。我还查看了TableRow文档,除了直接在布局中或以编程方式之外,没有看到一种设置样式属性的方法。
有人知道一种指定应用程序宽表行和表分隔符样式的方法吗?谢谢!