从另一个apk加载资源(布局)

时间:2012-07-04 07:23:27

标签: java android eclipse xml-parsing layout-inflater

我想知道是否可以从另一个apk加载布局xml文件。我知道如何访问其他应用程序资源,但我不确定如何尽可能加载xml。

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

有点像这些步骤...

  1. 使用XmlPullParser.setInput“加载”XML文件
  2. 将其转换为AttributeSet
  3. 从此AttributeSet创建视图
  4. 在您的活动中使用setContentView(View)
  5. 我猜我在问什么,这甚至可能吗?就像我说的,我知道如何访问资源。但是我如何访问布局xml?

    谢谢!

1 个答案:

答案 0 :(得分:3)

我设法拉出布局,然后将其添加到我的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