Here is what I tried to do :
	
	
	
	
	
	
	
		
			
			
			
			
			
		
	
	
	
		
	
	
		
	
Of course it does not work since v is a view and not an EditText. But, would it be possible somehow to cast v to EditText so I can access the view's properties ?
			
			
			
				B4X:
			
		
		
		For Each v As View In Activity.GetAllViewsRecursive
        If v Is EditText And Diko.ContainsKey(v.tag) Then
                v.TextColor = 0xFF6361FF
        End If
    Next
	Of course it does not work since v is a view and not an EditText. But, would it be possible somehow to cast v to EditText so I can access the view's properties ?