Android : Using multiple WebViews in one activity -


i making simple note taking application in i'm saving notes in html format support rich text formatting. far viewing notes concerned, i'm using webview show html formatted text. but, want show multiple notes on same activity. increases number of different webviews.

will affect performance of app? option use webviews achieve this? i'm confused , unaware of better methods this.

no, not option use webviews here. if want show spanned text can use textview, e.g.:

spanned spanned = html.fromhtml("<b>your string tags here</b>"); textview.settext(spanned); 

Comments

Popular posts from this blog

Android : Making Listview full screen -

javascript - Parse JSON from the body of the POST -

javascript - Chrome Extension: Interacting with iframe embedded within popup -