0

「tools.xml」を正しく表示する「Tools.java」がありますか? この「tools.xml」内の RelativeLayout には、空のレイアウト id = @+/contentLayout があります。

そして、他にもいくつかのアクティビティ「tool1.java」、「tools2.java」があります...「tool1.xml」、「tool2.xml」を示しています...

たとえば、クラス「tool1.java」を呼び出して、「tools.xml」にある RelativeLayout 内に「tool1.xml」を表示する方法

ありがとう

4

1 に答える 1

0

これをチェックしてください

// this is you relativelayout from tool.xml
    RelativeLayout relativeLayout = (RelativeLayout )findViewById(R.id.contentLayout);

    LayoutInflater inflater = (LayoutInflater)this.getSystemService(Context.LAYOUT_INFLATER_SERVICE);



                  // tool1 is your tool1.xml
            View tool1 = inflater.inflate(R.layout.tool1, null,false);

                // here add tool1 to tool.xml in relativelayout
            relativeLayout.addView(tool1 );
于 2012-04-13T16:40:18.393 に答える