Recently I asked for few solutions on preference dialog and got them, thanks to Experts here.
Now my query is, how the experts manage to see / use this type of log command to solve the problems ?
for example,
all solutions are inside the loop,
But how they get to items like below which looks very complicated to me,
I want to understand them so that I can also try to solve before putting them on the Forum.
Now my query is, how the experts manage to see / use this type of log command to solve the problems ?
for example,
B4X:
For i = 0 To pref.PrefItems.Size - 1
Dim pi As B4XPrefItem = pref.PrefItems.Get(i)
If pi.ItemType = pref.TYPE_SHORTOPTIONS Then
Dim c As B4XComboBox=pref.CustomListView1.GetPanel(i).GetView(1).Tag
c.cmbBox.TextSize=18
End If
Next
all solutions are inside the loop,
B4X:
For i = 0 To pref.PrefItems.Size - 1
...
...
Next
But how they get to items like below which looks very complicated to me,
B4X:
pref.CustomListView1.GetPanel(i).GetView(0).GetView(0).TextColor = 0xFFA52A2A
I want to understand them so that I can also try to solve before putting them on the Forum.