Android - Styling TableLayout

Is there a way to completely style TableLayout ?

I found [this], but I'm wondering if there is a way to apply the style to the table and not to the rows separately. I have many tables, and I do not want to apply the style separately to each row.

I tried applying the style to TableLayout , but the style tag in XML does not have android:tablerow item .

It would be ideal if I could do something like this:

 <style name="Table" parent="android:Theme"> <item name="android:textSize">24sp</item> <item name="android:padding">10dp</item> <item name="android:tablerow">@style/TableRow</item> </style> 
+6
source share

Source: https://habr.com/ru/post/907996/


All Articles