文件管理 · 2023年8月7日

android布局文件加载过程|android动态更新布局文件然后生成ui界面能实现吗

『壹』 如何在android中使用html作布局文件

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

『贰』 android动态更新布局文件,然后生成ui界面,能实现吗

可以。但是完全要用代码来实现,不能使用xml文件来。onCreate里面不用setContentView,直接new View,然后根据解析的xml文件,使用代码加载布局。比如xml中有一个<Button id=1>haha</name>,那么解析后就new Button,setId(1),setText("haha"),然后根据位置等信息,view.add(button)……就这样一直加进去。

『叁』 很简单的送分题又来了,高手还不进来android如何动态include布局文件,答得好的追加100分

inflate函数可以见xml布局文件刷成view,然后java中获得activity的view的父节点,然后通过addview就可以动态加入你要的view了