android中使用html作布局文件

时间:2023-05-10 14:05:56

在android开发中,通常使用xml格式来描述布局文件。就目前而言,熟悉android布局及美化的人员少之又少,出现了严重的断层。大部分企业,其实还是程序员自己动手布局。这样既浪费时间和精力,也未必能达到理想的效果。但是,在企业级的android开发中,使用html页面进行布局,也有很多的优势(例如:简单,大部分开发人员及美工都熟悉,方便统一进行更新,管理)。据笔者了解,已经有不少的公司在使用这种方式进行布局开发。这也可能是一种趋势。

下面,我将给出一个实例代码,供大家学习使用html页面给android应用布局。

[java] view plaincopy
  1. package com.dazhuo.ui;
  2. import java.util.List;
  3. import org.json.JSONArray;
  4. import org.json.JSONObject;
  5. import com.dazhuo.domain.Person;
  6. import com.dazhuo.service.PersonService;
  7. import android.app.Activity;
  8. import android.content.Intent;
  9. import android.net.Uri;
  10. import android.os.Bundle;
  11. import android.util.Log;
  12. import android.webkit.WebView;
  13. public class MainActivity extends Activity {
  14. private PersonService service;
  15. private WebView webview;
  16. @Override
  17. public void onCreate(Bundle savedInstanceState) {
  18. super.onCreate(savedInstanceState);
  19. setContentView(R.layout.main);
  20. service =new PersonService();
  21. webview = (WebView) this.findViewById(R.id.webView);//android内置浏览器对象
  22. webview.getSettings().setJavaScriptEnabled(true);//启用javascript支持
  23. //添加一个js交互接口,方便html布局文件中的javascript代码能与后台java代码直接交互访问
  24. webview.addJavascriptInterface(new PersonPlugin() , "Person");//new类名,交互访问时使用的别名
  25. // <body onload="javascript:Person.getPersonList()">
  26. webview.loadUrl("file:///android_asset/index.html");//加载本地的html布局文件
  27. //其实可以把这个html布局文件放在公网中,这样方便随时更新维护  例如 webview.loadUrl("www.xxxx.com/index.html");
  28. }
  29. //定义一个内部类,从java后台(可能是从网络,文件或者sqllite数据库) 获取List集合数据,并转换成json字符串,调用前台js代码
  30. private final class PersonPlugin{
  31. public void getPersonList(){
  32. List<Person> list = service.getPersonList();//获得List数据集合
  33. //将List泛型集合的数据转换为JSON数据格式
  34. try {
  35. JSONArray arr =new JSONArray();
  36. for(Person person :list)
  37. {
  38. JSONObject json =new JSONObject();
  39. json.put("id", person.getId());
  40. json.put("name", person.getName());
  41. json.put("mobile",person.getMobile());
  42. arr.put(json);
  43. }
  44. String JSONStr =arr.toString();//转换成json字符串
  45. webview.loadUrl("javascript:show('"+ JSONStr +"')");//执行html布局文件中的javascript函数代码--
  46. Log.i("MainActivity", JSONStr);
  47. } catch (Exception e) {
  48. // TODO: handle exception
  49. }
  50. }
  51. //打电话的方法
  52. public void call(String mobile){
  53. Intent intent = new Intent(Intent.ACTION_CALL, Uri.parse("tel:"+ mobile));
  54. startActivity(intent);
  55. }
  56. }
  57. }
[java] view plaincopy
  1. package com.dazhuo.domain;
  2. public class Person {
  3. private Integer id;
  4. public Integer getId() {
  5. return id;
  6. }
  7. public Person(Integer id, String name, String mobile) {
  8. super();
  9. this.id = id;
  10. this.name = name;
  11. this.mobile = mobile;
  12. }
  13. public void setId(Integer id) {
  14. this.id = id;
  15. }
  16. public String getName() {
  17. return name;
  18. }
  19. public void setName(String name) {
  20. this.name = name;
  21. }
  22. public String getMobile() {
  23. return mobile;
  24. }
  25. public void setMobile(String mobile) {
  26. this.mobile = mobile;
  27. }
  28. private String name;
  29. private String mobile;
  30. }

[java] view plaincopy
  1. package com.dazhuo.service;
  2. import java.util.ArrayList;
  3. import java.util.List;
  4. import com.dazhuo.domain.Person;
  5. public class PersonService {
  6. public List<Person> getPersonList()
  7. {
  8. List<Person> list =new ArrayList<Person>();
  9. list.add(new Person(32, "aa", "13675574545"));
  10. list.add(new Person(32, "bb", "13698874545"));
  11. list.add(new Person(32, "cc", "13644464545"));
  12. list.add(new Person(32, "dd", "13908978877"));
  13. list.add(new Person(32, "ee", "15908989898"));
  14. return list;
  15. }
  16. }

[html] view plaincopy
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  2. <html>
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  5. <title>Insert title here</title>
  6. <script type="text/javascript">
  7. function show(jsondata){
  8. var jsonobjs = eval(jsondata);
  9. var table = document.getElementById("personTable");
  10. for(var y=0; y<jsonobjs.length; y++){
  11. var tr = table.insertRow(table.rows.length); //添加一行
  12. //添加三列
  13. var td1 = tr.insertCell(0);
  14. var td2 = tr.insertCell(1);
  15. td2.align = "center";
  16. var td3 = tr.insertCell(2);
  17. td3.align = "center";
  18. //设置列内容和属性
  19. td1.innerHTML = jsonobjs[y].id;
  20. td2.innerHTML = jsonobjs[y].name;
  21. td3.innerHTML = "<a href='javascript:Person.call(\""+ jsonobjs[y].mobile+ "\")'>"+ jsonobjs[y].mobile+ "</a>";
  22. }
  23. }
  24. </script>
  25. </head>
  26. <!-- js代码通过webView调用其插件中的java代码 -->
  27. <body onload="javascript:Person.getPersonList()">
  28. <table border="0" width="100%" id="personTable" cellspacing="0">
  29. <tr>
  30. <td width="20%">编号</td><td width="40%" align="center">姓名</td><td align="center">电话</td>
  31. </tr>
  32. </table>
  33. <a href="javascript:window.location.reload()">刷新</a>
  34. </body>
  35. </html>

package com.dazhuo.ui;

import java.util.List;

import org.json.JSONArray;
import org.json.JSONObject;

import com.dazhuo.domain.Person;
import com.dazhuo.service.PersonService;

import android.app.Activity;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.util.Log;
import android.webkit.WebView;


public class MainActivity extends Activity {
   private PersonService service;
   private WebView webview;
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        service =new PersonService();
        webview = (WebView) this.findViewById(R.id.webView);//android内置浏览器对象
        webview.getSettings().setJavaScriptEnabled(true);//启用javascript支持
        //添加一个js交互接口,方便html布局文件中的javascript代码能与后台java代码直接交互访问
        webview.addJavascriptInterface(new PersonPlugin() , "Person");//new类名,交互访问时使用的别名
       // <body onload="javascript:Person.getPersonList()">
        webview.loadUrl("file:///android_asset/index.html");//加载本地的html布局文件
        //其实可以把这个html布局文件放在公网中,这样方便随时更新维护  例如 webview.loadUrl("www.xxxx.com/index.html");
    }
    //定义一个内部类,从java后台(可能是从网络,文件或者sqllite数据库) 获取List集合数据,并转换成json字符串,调用前台js代码
    private final class PersonPlugin{
    public void getPersonList(){
    List<Person> list = service.getPersonList();//获得List数据集合
    //将List泛型集合的数据转换为JSON数据格式
     try {
JSONArray arr =new JSONArray();
for(Person person :list)
{
JSONObject json =new JSONObject();
json.put("id", person.getId());
json.put("name", person.getName());
json.put("mobile",person.getMobile());
arr.put(json);
}
String JSONStr =arr.toString();//转换成json字符串
webview.loadUrl("javascript:show('"+ JSONStr +"')");//执行html布局文件中的javascript函数代码--
Log.i("MainActivity", JSONStr);
     } catch (Exception e) {
// TODO: handle exception
}
    }
    //打电话的方法
public void call(String mobile){
    Intent intent = new Intent(Intent.ACTION_CALL, Uri.parse("tel:"+ mobile));
    startActivity(intent);
    }
    }
}



package com.dazhuo.domain;

public class Person {
    private Integer id;
    public Integer getId() {
return id;
}
public Person(Integer id, String name, String mobile) {
super();
this.id = id;
this.name = name;
this.mobile = mobile;
}
public void setId(Integer id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getMobile() {
return mobile;
}
public void setMobile(String mobile) {
this.mobile = mobile;
}
private String name;
    private String mobile;
}



package com.dazhuo.service;

import java.util.ArrayList;
import java.util.List;

import com.dazhuo.domain.Person;

public class PersonService {
   public List<Person> getPersonList()
   {
  List<Person> list =new ArrayList<Person>();
  list.add(new Person(32, "aa", "13675574545"));
  list.add(new Person(32, "bb", "13698874545"));
  list.add(new Person(32, "cc", "13644464545"));
  list.add(new Person(32, "dd", "13908978877"));
  list.add(new Person(32, "ee", "15908989898"));
     return list;
   }
}


<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
<script type="text/javascript">
function show(jsondata){
       var jsonobjs = eval(jsondata);
       var table = document.getElementById("personTable");
       for(var y=0; y<jsonobjs.length; y++){
       var tr = table.insertRow(table.rows.length); //添加一行
       //添加三列
       var td1 = tr.insertCell(0);
       var td2 = tr.insertCell(1);
       td2.align = "center";
       var td3 = tr.insertCell(2);
       td3.align = "center";
       //设置列内容和属性
       td1.innerHTML = jsonobjs[y].id; 
       td2.innerHTML = jsonobjs[y].name; 
       td3.innerHTML = "<a href='javascript:Person.call(\""+ jsonobjs[y].mobile+ "\")'>"+ jsonobjs[y].mobile+ "</a>"; 
}
}
</script>

</head>
<!-- js代码通过webView调用其插件中的java代码 -->
<body onload="javascript:Person.getPersonList()">
   <table border="0" width="100%" id="personTable" cellspacing="0">
<tr>
<td width="20%">编号</td><td width="40%" align="center">姓名</td><td align="center">电话</td>
</tr>
</table>
<a href="javascript:window.location.reload()">刷新</a>
</body>

</html>

版权声明:本文为博主原创文章,未经博主允许不得转载。