我正在创建一个应用程序,每次用户执行某个操作时都会创建一个ImageButton。所以我的按钮创建动态。
我在FRAGMENT类中有一个方法(createButton),它传递一个图像(用作我的ImageButton的背景)。
我的问题是我似乎需要使用" LayoutInflater inflate"和" ViewGroup容器"为了打开我的相对布局视图并为其添加一个动态按钮,但我也传递了一个图像这个方法,所以我的方法迫使我初始化膨胀和容器。
我无法将它们初始化为null,因为当我运行我的应用程序时,我得到一个NullPointerException。我也尝试从onCreateView传递它们(就像我下面的代码一样),但我仍然得到一个NullPointerException。 如何使用LayoutInflater inflate和ViewGroup容器(不将它们初始化为null),同时仍将其他变量传递给我的方法。我在#34; tag-name之前抛出异常:rLayout&#34 ;得到印刷。
public class HomeFragment extends Fragment {
ViewGroup rootContainer;
LayoutInflater rootInflater;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
}
// onCreateView
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.home_fragment, container, false);
rootContainer = container;
rootInflater = inflater;
return view;
}
// Create button from icon and image name
public void createButton (BitmapDrawable bitmapdrawable, String applicationName){
Log.d("tag_name", "createButton");
//LayoutInflater inflater = (LayoutInflater)getContext().getSystemService
//(Context.LAYOUT_INFLATER_SERVICE);
try {
Log.d("tag_name", "Try_2");
// Get Layout home_fragment
View rootView = rootInflater.inflate(R.layout.home_fragment, rootContainer, false);
RelativeLayout rLayout = (RelativeLayout) rootView.findViewById(R.id.home_fragment);
Log.d("tag_name", "rLayout");
// create image button with background as bitmapdrawable
ImageButton btn = new ImageButton(getActivity());
btn.setImageDrawable(bitmapdrawable);
int id = 1;
btn.setId(id);
Log.d("tag_name", "set the ID of the btn");
// create textview with applicationName
//TextView appName = new TextView(getActivity());
//appName.setText(applicationName);
// place new button next to existing button
RelativeLayout.LayoutParams params = new RelativeLayout.LayoutParams(
RelativeLayout.LayoutParams.WRAP_CONTENT,
RelativeLayout.LayoutParams.WRAP_CONTENT);
params.addRule(RelativeLayout.RIGHT_OF, id);
btn.setLayoutParams(params);
// place text under newly created button
// Put button and text in layout
rLayout.addView(btn);
//rLayout.addView(appName);
}
catch (Exception e){
System.out.println("Exception is "+e.toString());
}
}
}
这是我的堆栈跟踪:
05-03 14:33:42.468 7197-7223/it.anddev.bradipao.janus D/tag_name: createButton
05-03 14:33:42.468 7197-7223/it.anddev.bradipao.janus D/tag_name: Try_2
05-03 14:33:42.468 7197-7223/it.anddev.bradipao.janus I/System.out: Exception is java.lang.NullPointerException
05-03 14:33:42.468 7197-7223/it.anddev.bradipao.janus W/System.err: java.lang.NullPointerException
05-03 14:33:42.468 7197-7223/it.anddev.bradipao.janus W/System.err: at it.anddev.bradipao.janus.HomeFragment.createButton(HomeFragment.java:118)
05-03 14:33:42.468 7197-7223/it.anddev.bradipao.janus W/System.err: at it.anddev.bradipao.janus.MainActivity$1.run(MainActivity.java:155)
HomeFragment中的第118行是这一行:
View rootView = rootInflater.inflate(R.layout.home_fragment, rootContainer, false);
我的mainActivity中的第155行是我将变量传递给HomeFragment的第二行:
HomeFragment createbutton = new HomeFragment();
createbutton.createButton(bitmapdrawable, applicationName);
答案 0 :(得分:1)
问题在于您创建片段并在其上调用createButton方法
HomeFragment createbutton = new HomeFragment();
createbutton.createButton(bitmapdrawable, applicationName);
你不能这样做。 Android中的所有活动,片段和服务必须经历各自的生命周期,以便他们附加有效的上下文。
通过将它们视为普通的Java类,您最终会得到一个空上下文。由于Activity,片段或服务中的大多数方法都在其Context上调用,因此您将获得空指针异常,这就是您的应用程序崩溃的原因。
你需要什么!!
FragmentTransaction fragmentTransaction = getSupportFragmentManager()
.beginTransaction();
Fragment profileFragment = new HomeFragment();//the fragment you want to show
fragmentTransaction
.add(R.id.parent, profileFragment);//R.id.content_frame is the layout you want to replace
fragmentTransaction.commit();
这是您创建片段的方式。
要对其createButton方法进行校准,您需要一个接口。
您需要在Fragment
中创建这样的界面public interface ButtonCreator{
void buttonCreator(BitmapDrawable bitmapDrawable, String string);
}
在您的活动中,您需要实施此方法。像这样:
@Override
public void buttonCreator(BitmapDrawable bitmap,String a) {
HomeFragment homeFragment = (HomeFragment)getSupportFragmentManager().getFragments().get(1);
homeFragment.createButton(bitmap,a);
}
不要忘记实现这样的界面
public class MainActivity extends FragmentActivity implements MenuFragment.OnMenufragListener, HomeFragment.ButtonCreator {
同样在你的片段中,你必须在你的onAttach方法中得到它
private ButtonCreator bc;
@Override
public void onAttach(Activity activity) {
super.onAttach(activity);
bc = (ButtonCreator) activity;
}
你会打电话给
buttonCreator(bitmapdrawable, applicationName);
的实例
createbutton.createButton(bitmapdrawable, applicationName);
这会奏效。但是我也看到按钮实现中的错误。
你必须调查它。
btn.setId(id);
上面的行需要像R.id.something
这样的id,而不是整数。我相信你会解决这个问题。