其他分享
首页 > 其他分享> > android-从cordova插件访问自定义布局资源

android-从cordova插件访问自定义布局资源

作者:互联网

我正在尝试从我的cordova插件中使用LayoutInflater替换吐司版式(向其添加图像),问题是R.layout.custom_toast(要获取custom_toast.xml文件)给出错误“错误:找不到符号”,并且没有不行我应该在哪里将我的custom_toast.xml文件放入插件文件夹结构中,以便从我的插件Java代码访问它?有什么魔咒可以使它起作用吗?为什么R不起作用?

View layout = inflater.inflate(R.layout.custom_toast,(ViewGroup)findViewById(R.id.toast_layout));

提前谢谢了,

解决方法:

由于插件不是活动(请勿扩展活动),因此无法直接使用R.你能做的就是不做

R.layout.name_of_file

做这个:

Application app=cordova.getActivity().getApplication();
String package_name = app.getPackageName();
Resources resources = app.getResources();
int ic = resources.getIdentifier("name_of_file", "layout", package_name);

因此,int ic将具有存储在R上的“文件名”的正确索引.因此,代替使用R.layout.name_of_file,简单使用ic.

您还必须导入这些packajes:

import android.app.Application;
import android.content.res.Resources;

标签:cordova,android-linearlayout,phonegap-plugins,android
来源: https://codeday.me/bug/20191120/2047718.html