自分で作ったり提供したりするものは、まず自分自身で使ってみろろということです。自分じゃ使わないものなら人はいくらでも無責任にも無思考にもなれる。そういう投げやりな「サービス」やら「プロダクツ」なんて、だれだってイヤだ。自分が作り手と同時に利用者の立場になれば、ちゃんと使えるレベルのものを提供しようとします。

ラベル Titanium の投稿を表示しています。 すべての投稿を表示
ラベル Titanium の投稿を表示しています。 すべての投稿を表示

2014年11月5日水曜日

Ti.SwipeRefreshLayout - Titanium Refreshモジュール(Android)

Titanium module for Android's SwipeRefreshLayout.


2012年4月27日金曜日

Titaniumリソース(更新中)

Titanium開発用のリソースをまとめて共有します。

基本サンプル
https://wiki.appcelerator.org/display/guides/Example+Applications

ベストプラクティス
http://wiki.appcelerator.org/display/guides/Mobile+Best+Practices

小さな Titanium Mobile の読み物
http://imthinker.net/titanium/

Titanium Mobile@China(中国語)
http://rensanning.iteye.com/

Titanium関数定義

Titaniumフレームワークを使って、Javascript関数定義をテストします。

コード
var self = Ti.UI.createWindow(
{
    backgroundColor : '#cccccc',
    navBarHidden : true,
    exitOnClose : true
});

var button1 = Ti.UI.createButton(
{
    height : 44,
    width : 200,
    title : ('Helo Titanium World!'),
    left : 10,
    top : 10
});
self.add(button1);

button1.addEventListener('click', function()
{
    func1('koma');
});

self.open();

var func1 = function(obj)
{
    alert('test func1' + '[' + obj + ']');
};

2012年4月26日木曜日

Hello Titanium

スマートフォン開発フレームワークTitaniumを勉強しています、まずはHello Worldサンプルを共有します。

var self = Ti.UI.createWindow(
{
 backgroundColor : '#cccccc',
 navBarHidden : true,
 exitOnClose : true
});

var button1 = Ti.UI.createButton(
{
 height : 44,
 width : 200,
 title : ('Helo Titanium World!'),
 top : 20
});
self.add(button1);

button1.addEventListener('click', function()
{
 alert(Ti.Platform.osname + " " + Ti.Platform.version);
});

self.open();

Titaniumモジュール

Titaniumに広告モジュールを入れるブログ
http://developer.appcelerator.com/blog/2011/07/building-apps-with-modules.html

ホームページ