2011年6月5日 星期日

[Android] layout_gravity 和 gravity 的區別

layout_gravity 和 gravity 主要的區別是在於layout_gravity是針對父元素,也就是在他之前的元素做調整;而 gravity 是指他裡面去做調整。


android:layout_gravity="left"

android:layout_gravity="center"


android:gravity="right"






各屬性詳細的說明可以看 Drawable Resources

-
以上圖片連結參考 kuluto 的 此篇文章 若原創者有任何問題,可以寄信通知。


2011年6月2日 星期四

[JavaScript] 開啟視窗

HTML
<a href="#" onclick="window.open('test.html','textfile',config='height=500,width=750,menubar=1')">
   詳細資料
</a>

可以直接開啟新視窗,並且再最可以隱藏工具列等其他的設定

下面是jQuery 寫法

HTML
<a href="#" id="userdata" >詳細資料</a>

jQuery
$("#userdata").click(function () { 
    window.open('/','textfile',config='height=500,width=750,menubar=1');
});


以下是參數

height=100 窗口高度;

width=400 窗口寬度;

top=0 窗口距離瀏覽器上方的像素值;

left=0 窗口距離瀏覽器左側的像素值;

toolbar=no 是否顯示工具列,yes為顯示、no為不顯示;

menubar=no 是否顯示選單列,yes為顯示、no為不顯示;

scrollbars=no 是否顯示滑動軸,yes為顯示、no為不顯示;

resizable=no 是否允許改變窗口大小,yes為允許、no為不允許;

location=no 是否允許顯示網址列,yes為允許、no為不允許;

status=no 是否顯示狀態檔內的訊息,yes為允許、no為不允許;



參考網站:http://www.study-area.org/coobila/tutorial_275.html
                http://www.javascript-coder.com/window-popup/javascript-window-open.phtml
                http://kyo0183.blogspot.com/2008/10/windowopen.html