编程语言
首页 > 编程语言> > java-从另一个APK加载资源(布局)

java-从另一个APK加载资源(布局)

作者:互联网

我想知道是否有可能从另一个apk加载布局xml文件.我知道如何访问另一个应用程序资源,但是我不确定如何加载xml(如果可能的话).

如果我想使用layout inflater将布局设置为视图,是否必须解析xml?

有点像这些步骤…

>使用XmlPullParser.setInput来“加载” XML文件
>将其转换为AttributeSet
>从此AttributeSet创建视图
>在您的活动中使用setContentView(View)

我猜我在问什么,这有可能吗?就像我说的,我知道如何访问资源.但是我将如何访问布局xml?

谢谢!

解决方法:

我设法拉出布局,并将其添加到我的viewflipper中,但是在那里被加载为空白.

Resources packageResources;
Context packageContext;
try
{   
    packageResources = pm.getResourcesForApplication(packageName);
    packageContext = this.createPackageContext(packageName,  Context.CONTEXT_INCLUDE_CODE + Context.CONTEXT_IGNORE_SECURITY);                
}
catch(NameNotFoundException excep)
{
    // the package does not exist. move on to see if another exists.
}

Class layoutClass;
try
{
   // using reflection to get the layout class inside the R class of the package
   layoutClass = packageContext.getClassLoader().loadClass(packageName + ".R$layout");
}
catch (ClassNotFoundException excep1)
{
   // Less chances that class won't be there.
}

for( Field layoutID : layoutClass.getFields() )
{
   try
   {
       int id = layoutID.getInt(layoutClass);
       XmlResourceParser xmlResourceLayout = packageResources.getLayout(id);

       View v = new View(this, Xml.asAttributeSet(xmlResourceLayout));

       this.viewFlipper.addView(v);                 
    }
    catch (Exception excep)
    {
        continue;
    }
}

我没有任何错误,并且我进行了调试和检查.布局ID是正确的.但是,在我的viewFlipper中,它只是空白.我找不到警告或错误.

终于找到了解决方案…在下面发布了

Load resource (layout) from another apk dynamically

标签:layout-inflater,eclipse,java,android,xml-parsing
来源: https://codeday.me/bug/20191201/2078342.html