TitaniumでGunosy風UIを実装する
3441 ワード
ブログでも書きました。⇢ 元記事
ソースコード ⇢ team-cheekit/likeGunosy(github)
背景
画面を横にスワイプすると、タブも動くUIを作りたかった.
実装方法
ここを見た。
Scrollable Tabs + Draggable Windows example (Titanium Alloy)
基本的に上記参考リンク先のコードをコピペでいいですが、注意が1点。
もしNexus5などのdpiの高い端末で使うなら、
Alloy.Globals.currentTabWidth = width;
if (Ti.Android) {
switch(Ti.Platform.displayCaps.dpi) {
case 120: width /= 0.75; break;
case 160: width = width; break;
case 240: width /= width * 1.5; break;
case 320: width /= 2; break;
case 480: width /= 3; break; // ここ追加!!
}
child.setWidth(width);
}
と、case文を追加すること。
Author And Source
この問題について(TitaniumでGunosy風UIを実装する), 我々は、より多くの情報をここで見つけました https://qiita.com/rk0der/items/f5920a04a29fd6ee396b著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .