星期五, 11月 20, 2015

[jQuery] ajax request queue 蒐集

記錄一些使用jquery ajax queue的解決方案,目前要找的需求是要能支援concurrent ajax requ,而不是一個接著一個發送。

$.ajaxMultiQueue
https://github.com/GeReV/jQuery.ajaxMultiQueue

$.AjaxQueue https://gist.github.com/iambigd/46fe33eaf3dec450e965

http://dreamerslab.com/demos/javascript-loose-coupling-with-jquery-queue-plugin

目前使用$ajaxQueue方案,再多用一個Wrapper包起來即可。


星期四, 11月 19, 2015

[Android] 解除選單背景色變透明度(background-is-always-transparent)的問題

最近在處理APP選單變透明的問題,
會導致畫面的字會重疊,因此就被發bug了,
試了一些解法,最後成功的方式,記錄一下免得有新手爆雷XD

只要在styles.xml裡面加入android:panelBackground控制就好,
完整擷圖如下:


參考:
http://stackoverflow.com/questions/27787890/android-optionsmenu-issue-background-is-always-transparent


星期二, 11月 17, 2015

[AngularJS-3rd] eeh-navigation 選單模組

 eeh-navigation強大的選單模組,作者也提供完整的範例



[Andriod] 使用按鈕觸發選單: openOptionsMenu();


使用按鈕觸發menu被顯示。
Button menuBtn = (Button)this.findViewById(R.id.topic_3_menu_button);
menuBtn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
Log.d(TAG,"點擊功能選單鈕");
openOptionsMenu();
}


});

http://stackoverflow.com/questions/18913635/how-to-trigger-a-menu-button-click-event-through-code-in-android

其他你感興趣的文章

Related Posts with Thumbnails