我正在使用此库来创建滑动窗格。
https://github.com/6wunderkinder/android-sliding-layer-lib
基本上它是一个滑动菜单。现在,当我在一个活动中使用它时,它工作正常。我正在动态添加它: -
slidingPane = (SlidingLayer) View.inflate(this,R.layout.sliding_pane, null);
swipeText = (TextView) slidingPane.findViewById(R.id.swipeText);
parentLayout = (RelativeLayout) findViewById(R.id.parentLayout); // Main Layout
parentLayout.addView(slidingPane);
它就像这样使用,比如按一下按钮: -
slidingPane.openLayer(true);
当我尝试使用上面相同的步骤在Fragment类中对它进行充气时,它没有显示。这就是我在onViewCreated(View view, Bundle savedInstanceState)
AUslidePane = (SlidingLayer) View.inflate(getActivity(),R.layout.sliding_pane, null);
AUswipeText = (TextView) AUslidePane.findViewById(R.id.swipeText);
parentLayoutdashboardAU = (LinearLayout) getActivity().findViewById(R.id.parentLayoutdashboardAU);
parentLayoutdashboardAU.addView(AUslidePane);
有人可以在这里提出可能存在的问题吗?