我要求這個acitvity作爲我的主要laucher此活動從此庫擴展SlidingActivity https://github.com/jfeinstein10/SlidingMenu。當它爲我使用片段創建的slidingmenu創建一個behindcontentview。在此主要活動中,我爲日曆創建自定義視圖,其中有自定義視圖中繪製的圖標。我想切換這些圖標,所以我在滑動菜單片段視圖中使用了開關,但是我得到一個空指針異常,當cat切換到切換器所在的片段時,log cat說它發生在列表器中。因此,我的代碼清除了在主活動中使用自定義視圖製作的日曆上的圖標,並且可以在主活動中使用代碼,但不會在切換列表程序OnCheckedChangeListener中使用代碼。SlidingMenu片段切換監聽器空指針異常
繼承人Mainactivity滑動菜單和片段上調用,以填補滑動菜單
setBehindContentView(R.layout.menu_frame);
FragmentTransaction t = this.getSupportFragmentManager().beginTransaction();
mFrag = new ColorFragment();
t.replace(R.id.menu_frame, mFrag);
t.commit();
// customize the SlidingMenu
SlidingMenu sm = getSlidingMenu();
sm.setShadowWidthRes(R.dimen.shadow_width);
sm.setShadowDrawable(R.drawable.shadow);
sm.setBehindOffsetRes(R.dimen.slidingmenu_offset);
sm.setFadeDegree(0.35f);
sm.setTouchModeAbove(SlidingMenu.TOUCHMODE_FULLSCREEN);
//sm.attachToActivity(this, SlidingMenu.SLIDING_WINDOW);
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
//redrawtest();
// setListener();
我的繼承人這一主要活動XML。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<com.projects.shiftcalendar.CalendarView
android:id="@+id/view_month_calendar"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
</com.projects.shiftcalendar.CalendarView>
</LinearLayout>
這是我的片段
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle
savedInstanceState) {
return inflater.inflate(R.layout.slide_menu_toggle, null);
}
public void onActivityCreated(Bundle savedInstanceState) {
super.onActivityCreated(savedInstanceState);
Switch d = (Switch) getView().findViewById(R.id.monitored_switch1);
d.setOnCheckedChangeListener(this);
}
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
if(isChecked){
cv.redrawCalendarClearSymbol();
}
else {
cv.redrawCalendarClearSymbol();
}
}
}
你能不能給我完整的代碼,其實我有問題,與不同的片段滑動菜單。 –