Hy Erel,
as defining the look on an App with xml files is very, very powerful I tend to create the views via the Designer and style it later with custom xml-theme.
This works very good and is far better than using the "old" way:
For i = 0 To FActivity.NumberOfViews - 1
setColor(FActivity.GetView(i))
Next
the only problem is, that my app has different Themes from which the user can choose...
I found in the android - documentation following:
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
...
setTheme(android.R.style.Theme_Light);
setContentView(R.layout.linear_layout_3);
}
Is it possible to implement that into B4A? It would be a biiiiiig step forwards Interface design....
:sign0162: