AddWebView
// ---------biography by web view--------------------
WebView view = new WebView(this);
view.setVerticalScrollBarEnabled(false);
((LinearLayout) findViewById(R.id.linear_biography_me1)).addView(view);
//biography is my variable
String html = "<html><head></head><body style=+"
+ "text-align:justify;color:gray; >" + Biography
+ "</body></html>";
view.setBackgroundColor(Color.TRANSPARENT);
view.loadData(html, "text/html", "utf-8");
//-----------------------------