2016-07-30 2 views

Antwort

0

erstellen Sie eine benutzerdefinierte Layout für Ihre Textansicht

// inflate text view 
    TextView textView = (TextView) getLayoutInflater().inflate(R.layout.customtextview, null); 


// this is a custom layout that you to add at the text view and it should include text and image view as your requirement 
    LinearLayout layoutForText = (LinearLayout)findViewById(R.id.layout_for_text); 
layoutForText.addView(main); 
Verwandte Themen