溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Android加載Assets目錄中Xml布局文件

發(fā)布時(shí)間:2020-08-22 17:59:06 來源:腳本之家 閱讀:436 作者:ImTryCatchException 欄目:移動(dòng)開發(fā)

最近由于項(xiàng)目開發(fā)使用到了動(dòng)態(tài)布局,因?yàn)榇虬黶dk ,sdk 這塊activity 需要一些layout 文件 。而做過sdk 開發(fā)的小伙伴應(yīng)該知道,layout 文件是不能打包到j(luò)ar 中的。當(dāng)然了aar 除外。由于項(xiàng)目使用的還是jar包,所以怎么解決layout文件是個(gè)問題,一開始想到的辦法就是把layout 文件發(fā)給客戶。但是這種方法顯然不太合適后來就發(fā)現(xiàn)了Android 其實(shí)提供了一個(gè)方法可以加載xml布局文件,就是使用inflate(XmlPullParser parser, ViewGroup root)這個(gè)方法,網(wǎng)上找了大批的文章,其中還是找到了兩篇簡單描寫了下這個(gè)解析的過程但是在使用過程中還是出現(xiàn)了幾個(gè)問題 :

1 如何拿到XmlPullParser 對象

拿到這個(gè)對象倒是不難我們通過 AssetsManger 就可以輕易獲取XmlResourceParser openXmlResourceParser(String fileName)
但是注意這里有個(gè)問題就是filename 要加上”assets\”前綴不然會報(bào) FileNotFound異常

2 發(fā)現(xiàn)解析不了xml 布局文件

openxmlresourceparser 方法報(bào)錯(cuò),為什么呢。查到資料是因?yàn)檫@個(gè)方法只能解析編譯后的xml文件,那么什么事編譯后的xml文件,就是生成的apk 解壓后 拿到的xml就是編譯后的。所以我們放在assets 中的xml 都要是編譯后的文件。目前還沒有找到Android有別的工具可以專門編譯xml 文件

3 解析到了view 如何拿到里面的子view 通過id 不行啊

這是肯定的不是在layout文件夾下的不會有id 索引所以你不能通過id 來find 。那么如何拿到子view ,后來發(fā)現(xiàn)了有人解決這個(gè)問題就是通過findViewWithTag 這個(gè)方法可以通過xml view 下配置的tag 來獲取

以上問題解決后就完美拿到了xml 的布局view 文件 可以動(dòng)態(tài)設(shè)置給activity了。下面我把源碼貼上來需要的朋友可以參考下。

import android.content.Context;
import android.content.res.AssetManager;
import android.content.res.XmlResourceParser;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.view.LayoutInflater;
import android.view.View;
import java.io.IOException;
import java.io.InputStream;

/**
 * Created by yuge on 2017/11/8.
 */

public class AssetsViewHelper {
 private static Context mcontext;
 private static AssetsViewHelper assetsViewHelper;
 /**
  * assets 目錄前綴
  */
 private static String assetsFile="assets/";
 private AssetsViewHelper(){
 }


 public static AssetsViewHelper width(Context context){
  mcontext=context.getApplicationContext();
  if(assetsViewHelper==null){
    synchronized (AssetsViewHelper.class){
     if(assetsViewHelper==null){
      assetsViewHelper=new AssetsViewHelper();
     }
    }
  }
  return assetsViewHelper;
 }

 /**
  * 獲取layout方法
  * @param filename
  * @return
  */
 public View getAssetsLayout(String filename) {
  AssetManager am = mcontext.getResources().getAssets();
  try {
    XmlResourceParser parser = am.openXmlResourceParser(assetsFile + "activity_main.xml");
    LayoutInflater inflater = (LayoutInflater) mcontext.getSystemService(mcontext.LAYOUT_INFLATER_SERVICE);
    View inflate = inflater.inflate(parser, null);
    return inflate;
   } catch (IOException e) {
    e.printStackTrace();
    return null;
   }
 }
  /**
   * 根據(jù) tag 獲取 view 對象
   * @param viewGroup 父容器也就是activity的根布局
   * @param tag
   * @return
   */
 public View getViewByTag(View viewGroup,Object tag){
  return viewGroup.findViewWithTag(object);
 }

 /**
  * 獲取assets 中圖片的方法
  * @param fileName
  * @return
  */
  Bitmap getImageFromAssetsFile(String fileName)
 {
  Bitmap image = null;
  AssetManager am = mcontext.getResources().getAssets();
  try
  {
   InputStream is = am.open(assetsFile+fileName);
   image = BitmapFactory.decodeStream(is);
   is.close();
  }
  catch (IOException e)
  {
   e.printStackTrace();
  }

  return image;

 }
}

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI