This page was last modified 07:17, 6 June 2008.
S60 Widgetにおける、iframeタグの使用
From Forum Nokia Wiki
原文(英語): S60 Widgets and iframes
対象となるバージョン: Web Runtime in S60 3rd Edition, Feature Pack 2
iframeタグの使用
iframeタグの使用は大変処理が重くなるので、最適な手法ではありません。実行時は、全てのiframeを別々のブラウザウィンドウで実行します。iframeはメモリ消費とWidget全体のパフォーマンスに多大な影響を与えうるので、Widgetコンテキスト中でのiframeの使用は勧められません。またS60 Widgetsでは、iframeはWidget中またはブラウザモードにおいて、画面スクロールをサポートしないことに注意する必要があります。
使用例
iframeは、HTMLページを参照する場合のみ機能します。
<iframe width="50" height="50" name="frm" id="frm"
marginwidth="0" marginheight="0" src="test.html"></iframe>
In test.html you can utilize any HTML techniques you prefer.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<link rel="stylesheet" type="text/css" href="iframing.css"/>
</head>
<body>
<img src="inbox.png"/>
</body>
</html>
HTMLページ以外のものを参照するのは、iframeの誤った使用方法です。
<!--this code will not work in real devices--> <iframe width="50" height="50" name="notworking" marginwidth="0" marginheight="0" src="kala.png"></iframe> <!--this code will not work in real devices-->
| Related Discussions | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| How to modify native application of Phone | amitjigupta | General Discussion | 9 | 2008-08-12 09:43 |
| Newbie Q. about carbide.c++ v1.3 not having templates for S60 2nd FP2 | tamdid | General Symbian C++ | 7 | 2008-05-29 17:41 |
| Music player on S60 3.0 phone | serprem | Symbian Media (Graphics & Sounds) | 0 | 2005-12-13 14:11 |
| Please recommend mobile phone for the symbian development | lfzgjj | Carbide.c++ and CodeWarrior Tools | 2 | 2007-10-29 20:16 |
| speech recognition in s60 3rd edition | fatema27 | General Symbian C++ | 10 | 2008-08-14 06:06 |
