gpt4 book ai didi

android - 将 View 添加到 fragment 内的布局

转载 作者:行者123 更新时间:2023-11-30 03:30:15 25 4
gpt4 key购买 nike

是否可以将 View 添加到 fragment 内的布局。我的 fragment 代码看起来像这样,但我在添加时崩溃了。

我想将 View 动态添加到 fragment 内的线性布局。

package com.emergreen.goresq;

import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
import android.widget.LinearLayout;

import com.actionbarsherlock.app.SherlockFragment;

public class GRPlacesFragment extends SherlockFragment{

GRMyPlaces grmp;
View myview;

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.grpl,
container, false);

myview = view;
return view;
}


public void addPlaces(context gr)
{
grmp = gr;

LinearLayout ll = (LinearLayout) myview.findViewById(R.id.pid);

Button button = new Button(grmp);
button.setText("Testing button");



ll.addView(button);


}

}

最佳答案

当我在项目中使用 fragment 时,尝试执行以下似乎对我有用的操作:

public class GRPlacesFragment extends SherlockFragment {

...
private View myView;

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
myView = inflater.inflate(R.layout.grpl, container, false);

return myView;
}


...

您的变量分配似乎有问题,因为您在使用“view”和“myview”之间切换。

您还应该确保您的两个变量是私有(private)的,因此只能访问这个特定的类。

告诉我这是否有帮助。

关于android - 将 View 添加到 fragment 内的布局,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17578768/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com