i want to give hint for last 4 characters only.Please provide layout for the same
            Asked
            
        
        
            Active
            
        
            Viewed 756 times
        
    -2
            
            
         
    
    
        mehrdad khosravi
        
- 2,228
- 9
- 29
- 34
 
    
    
        Tushar Tayal
        
- 11
- 
                    1Did you take a look already at http://stackoverflow.com/questions/2394935/can-i-underline-text-in-an-android-layout – timr Jun 05 '16 at 14:08
- 
                    check spanable style in android. that will help – Sush Jun 05 '16 at 14:09
- 
                    @tim Yes,I already had a look at that link.This is not I am trying to do – Tushar Tayal Jun 05 '16 at 14:15
1 Answers
0
            
            
        Maybe something like this
TextView theTextView = new TextView(this);
theTextView.setText(Html.fromHtml("<u>3</u> <u>2</u> <u>3</u> <u>5</u> <u>1</u>"));
 
    
    
        rib
        
- 190
- 1
- 11
