真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Android怎么獲取清單文件中的meta-data

這篇文章主要介紹了Android怎么獲取清單文件中的meta-data,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

創(chuàng)新互聯(lián)主營山東網(wǎng)站建設(shè)的網(wǎng)絡(luò)公司,主營網(wǎng)站建設(shè)方案,app軟件定制開發(fā),山東h5小程序開發(fā)搭建,山東網(wǎng)站營銷推廣歡迎山東等地區(qū)企業(yè)咨詢

Android是什么

Android是一種基于Linux內(nèi)核的自由及開放源代碼的操作系統(tǒng),主要使用于移動設(shè)備,如智能手機和平板電腦,由美國Google公司和開放手機聯(lián)盟領(lǐng)導(dǎo)及開發(fā)。

1.meta-data是什么?如何獲取meta-data?

在AndroidManifest.xml中,元素可以作為子元素,被包在activity、application 、service、或者receiver元素中,不同的父元素,在應(yīng)用時讀取的方法也不同。

在activity中:

ActivityInfo info = null;
    try {
      info = this.getPackageManager().getActivityInfo(getComponentName(), PackageManager.GET_META_DATA);
    } catch (PackageManager.NameNotFoundException e) {
      e.printStackTrace();
    }
    info.metaData.getString("meta_name");

在application中:

ApplicationInfo appInfo = null;
    try {
      appInfo = this.getPackageManager().getApplicationInfo(getPackageName(), PackageManager.GET_META_DATA);
    } catch (PackageManager.NameNotFoundException e) {
      e.printStackTrace();
    }
    appInfo.metaData.getString("meta_name");

在service中:

ComponentName cn = new ComponentName(this, XXXXService.class);
    ServiceInfo info = null;
    try {
      info = this.getPackageManager().getServiceInfo(cn, PackageManager.GET_META_DATA);
    } catch (PackageManager.NameNotFoundException e) {
      e.printStackTrace();
    }
    info.metaData.getString("meta_name");

在receiver中:

ComponentName cn = new ComponentName(getApplicationContext(), XXXXXReceiver.class);
    ActivityInfo info = null;
    try {
      info = getApplicationContext().getPackageManager().getReceiverInfo(cn, PackageManager.GET_META_DATA);
    } catch (PackageManager.NameNotFoundException e) {
      e.printStackTrace();
    }
    info.metaData.getString("meta_name");

2.遇到的問題:獲取到值為null

之前在application中獲取一直key值,但是一直獲取到的都是null,后來人大神說:讀取字符串的數(shù)值要用info.metaData.getInt,嘗試了一下,彎的佛,成功拿到,如果是數(shù)值類型的,獲取值的時候,可以采用:

info.metaData.getInt("meta_name"));

替代

info.metaData.getString("meta_name");

補充知識:android webview攔截替換本地資源,提升加載性能,節(jié)省流量

現(xiàn)在許多游戲都是直接提供一個訪問地址,然后由webview去訪問加載,加載速度的快慢取決于網(wǎng)速,當然也耗流量,這個時候,為了提高產(chǎn)品競爭力,產(chǎn)品經(jīng)理就會提出需求了,web前端的同學(xué)也就會把資源給到Android前端,接下來就是要做的處理了,代碼不多,用作記錄:

package com.dxgame.demo;

import android.net.Uri;
import android.os.Build;
import android.os.Bundle;
import android.support.annotation.RequiresApi;
import android.support.v7.app.AppCompatActivity;
import android.text.TextUtils;
import android.util.Log;
import android.webkit.MimeTypeMap;
import android.webkit.WebResourceRequest;
import android.webkit.WebResourceResponse;
import android.webkit.WebView;
import android.webkit.WebViewClient;

import java.io.InputStream;
import java.util.HashMap;

public class CheckLocal extends AppCompatActivity {

  private WebView webView;

  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.check_local);
    webView.setWebViewClient(webViewClient);
  }


  //WebViewClient主要幫助WebView處理各種通知、請求事件
  private WebViewClient webViewClient = new WebViewClient() {

    @RequiresApi(api = Build.VERSION_CODES.LOLLIPOP)
    public WebResourceResponse shouldInterceptRequest(WebView view, WebResourceRequest request) {
      Uri uri = request.getUrl();
      WebResourceResponse response = checkLocalWebResourceResponse(uri);
      if (response != null) {
        return response;
      }
      return super.shouldInterceptRequest(view, request);
    }

    @RequiresApi(api = Build.VERSION_CODES.LOLLIPOP)
    public WebResourceResponse shouldInterceptRequest(WebView view, String url) {
      Uri uri = Uri.parse(url);
      WebResourceResponse response = checkLocalWebResourceResponse(uri);
      if (response != null) {
        return response;
      }
      return super.shouldInterceptRequest(view, url);
    }
  };

  @RequiresApi(api = Build.VERSION_CODES.LOLLIPOP)
  private WebResourceResponse checkLocalWebResourceResponse(Uri uri) {
    WebResourceResponse resourceResponse = null;
    String urlStr = uri.toString();
    Log.i("checkUrl", urlStr);
    String path = uri.getPath();
    if (!TextUtils.isEmpty(path)) {
      path = path.substring(1);
    }
    try {
      InputStream input = getAssets().open(path);
      if (input != null) {
        Log.i("assetsPath", path);
        String mimeType = MimeTypeMap.getSingleton().getMimeTypeFromExtension(path.substring(path.lastIndexOf(".") + 1));
        HashMap header = new HashMap<>();
        header.put("Access-Control-Allow-Origin", "*");
        header.put("Access-Control-Allow-Headers", "Content-Type");
        resourceResponse = new WebResourceResponse(mimeType, "", 200, "ok", header, input);
      }
    } catch (Exception e) {
      e.printStackTrace();
    }
  }
   return resourceResponse;
}

還可以進一步優(yōu)化,利用webview的緩存機制,將數(shù)據(jù)緩存到本地,方法就不列出來了,網(wǎng)上有很多,自行百度

感謝你能夠認真閱讀完這篇文章,希望小編分享的“Android怎么獲取清單文件中的meta-data”這篇文章對大家有幫助,同時也希望大家多多支持創(chuàng)新互聯(lián),關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,更多相關(guān)知識等著你來學(xué)習(xí)!


本文名稱:Android怎么獲取清單文件中的meta-data
文章位置:http://weahome.cn/article/pessjs.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部