在Android中动态更改视图内部视图

发布于 2024-10-07 23:49:33 字数 500 浏览 2 评论 0原文

我有这个相对视图,顶部有 3 个单选按钮。当用户单击其中一个按钮时,我想更改视图的底部。

蓝色部分是我想要加载不同视图的地方。 alt text

@Override
public void onCheckedChanged(RadioGroup group, int checkedId) {
    if (checkedId == iVerzekeringen){
        layout.removeView(body);   // THIS PART IS
        layout.addView(testview);  // NOT WORKING
    }
    else if (checkedId == iPersoonlijk){
    }
    else if (checkedId == iNotities){
    }
}

如何将不同的视图加载到蓝色部分?

I have this RelativeView with 3 radiobuttons on top. I want to change the bottom part of the view when the user clicks on one of the buttons.

The blue part is the place i want to load different Views in.
alt text

@Override
public void onCheckedChanged(RadioGroup group, int checkedId) {
    if (checkedId == iVerzekeringen){
        layout.removeView(body);   // THIS PART IS
        layout.addView(testview);  // NOT WORKING
    }
    else if (checkedId == iPersoonlijk){
    }
    else if (checkedId == iNotities){
    }
}

How can i load different Views into the blue part?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

浪推晚风 2024-10-14 23:49:33

我找到了答案:

layout = (RelativeLayout)findViewById(R.id.rellayout);
LayoutInflater layoutInflater = (LayoutInflater)this.getSystemService(Context.LAYOUT_INFLATER_SERVICE); 
layout.addView(layoutInflater.inflate(R.layout.gegevens_verzekeringen, group, false), 1 );

这会在父 xml 上加载视图。我希望它仅将其加载到“主体”部分(图中的蓝色部分),

我这样声明主体:

body = (RelativeLayout)findViewById(R.id.body);

但是当我这样做时 body.addView(layoutInflater.inflate(R.layout.gegevens_verzekeringen, group , false), 1);

它说 java.lang.IndexOutOfBoundsException: index=1 count=0

我该如何解决这个问题?

编辑:明白了:

body.addView(layoutInflater.inflate(R.layout.gegevens_verzekeringen, null));

I kinda found the answer:

layout = (RelativeLayout)findViewById(R.id.rellayout);
LayoutInflater layoutInflater = (LayoutInflater)this.getSystemService(Context.LAYOUT_INFLATER_SERVICE); 
layout.addView(layoutInflater.inflate(R.layout.gegevens_verzekeringen, group, false), 1 );

This loads the view over the parent xml. I want it to load it over just the 'body' part (the blue part in the picture)

I declared the body like this:

body = (RelativeLayout)findViewById(R.id.body);

But when i do body.addView(layoutInflater.inflate(R.layout.gegevens_verzekeringen, group, false), 1);

It sais java.lang.IndexOutOfBoundsException: index=1 count=0

How can i fix this?

Edit: Got it:

body.addView(layoutInflater.inflate(R.layout.gegevens_verzekeringen, null));
叫思念不要吵 2024-10-14 23:49:33
  • 使用 findViewById 获取对每个 RadioButton 的引用
  • 在每个 RadioButtonsetOnClickListener 注册一个 OnClickListener code>
  • 在您的 OnClickListener 回调中,加载不同的背景
  • use findViewById to get a reference to each RadioButton
  • Register an OnClickListener using setOnClickListener on each RadioButton
  • Inside your OnClickListener callback, load a different background
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文