Back to project page videoMerge.
The source code is released under:
Apache License
If you think the Android project videoMerge listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.dragonplayer.merge.fragment; //from w ww. j a va 2 s.c om import android.app.Activity; import android.webkit.WebView; public class GiftFragment { Activity activity; WebView webview; public GiftFragment(Activity activity, WebView webview) { super(); this.activity = activity; this.webview = webview; init(); } private void init() { // TODO Auto-generated method stub String data = "<pre><p style=\"font-size:14px;font-family:'Apple LiGothic';color:#4F81BD;\">(????)</p>" + "<p style=\"font-size:14px;font-family:'Apple LiGothic';color:#C01900;\">???????</p>" + "<p style=\"font-size:14px;font-family:'Apple LiGothic';\">???????9/15 10/31</p><p style=\"font-size:14px;font-family:'Apple LiGothic';\">?????????????????????????????</p><ol><li style=\"font-size:14px;font-family:'Apple LiGothic';\">" + "??????????????????" + "</li><li style=\"font-size:14px;font-family:'" + "Apple LiGothic';\">??SK2U??????????????<br s" + "tyle=\"font-size:14px;font-family:'Apple LiGothi" + "c';\">???????</br></li><li style=\"font-size:14" + "px;font-family:'Apple LiGothic';\">????????????????" + "?</li><li style=\"font-size:14px;font-family:'Apple LiG" + "othic';\">?????????????????????????<br style=\"font-size:" + "14px;font-family:'Apple LiGothic';\">?????????????????" + "??????<br>?????????</br></li></ol><p style=\"font-size:14px;font-f" + "amily:'Apple LiGothic';color:#C01900;\">???????</p>????????2" + "??????????????<br/>????2??????????????????????4???<br/>??" + "TASTy?????????1???????????<br/>???" + "????????4???????????????????<br/>????1???</p>" + "<p style=\"font-size:14px;font-family:'Apple LiGothic'" + ";\"></p><p style=\"font-size:14px;font-family:" + "'Apple LiGothic';color:#C01900;\">??????</p><ol><l" + "i style=\"font-size:14px;font-family:'Apple LiGothic'" + ";\">???????????????????<br/>??????????(?????????)??????<br/>?" + "????????????????????<br/>??????????????????????<br/>????????????" + "??????????<br/>??????????????????????<br/>?????????????????" + "</li><li style=\"font-size:14px;font-fa" + "mily:'Apple LiGothic';\">???????????????" + "?????<br/>????1,000??????????<br/>????(???)20," + "000???????<br/>10%???????????????<br/>????????????" + "???????<br/>????????????????<br/>??????????????????????<br" + "/>???????????????</li><li style=\"font-size:14px;font-family:'Apple LiGothic';\">??????????????????<br/>????????????????<br/>???????????????<br/>???????????????<br/>?????????</li><li style=\"font-size:14px;font-family:'Apple LiGothic';\">??????????????????<br/>???(02)7746-4100??????<br/>???~?(9:30~18:00)?mail<br/>?<a href=\"mailto:service@skywind.com.tw\">service@skywind.com.tw</a>????</li></ol></pre>"; webview.loadDataWithBaseURL(null, data, "text/html", "utf-8", null); } }