デザイナーでもプログラマーでなくても素早くブラウザで確認できます.
自分が決めた配色のイメージを簡単に右上のアイコンリンクで他人に伝えることができます.
あとは, 開発者向けに一括で出力できたらなあ.
デザイナーでもプログラマーでなくても素早くブラウザで確認できます.
自分が決めた配色のイメージを簡単に右上のアイコンリンクで他人に伝えることができます.
あとは, 開発者向けに一括で出力できたらなあ.
MaterialDesign な ActionBar に実装されているメニューアイコンを長押ししたら表示される 吹き出しチックな Toast.
これ.
例えば, レイアウトがこんな感じであるとして,
... <TextView android:id="@+id/text" android:layout_width="wrap_content" android:layout_height="wrap_content" android:longClickable="true" android:text="Hello World!" android:contentDescription="コンニチハ セカイ!!" /> ... <android.support.design.widget.FloatingActionButton android:id="@+id/fab" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="bottom|end" android:layout_margin="@dimen/fab_margin" android:src="@android:drawable/ic_dialog_email"/> ...
リスナーと表示するテキストは以下のようにシンプルにセットするのみ.
... TextView text = (TextView)findViewById(R.id.text); FloatingActionButton fab = (FloatingActionButton) findViewById(R.id.fab); CheatSheet.setup(text); CheatSheet.setup(fab, "メールボタンを長押ししました!!"); ...
それぞれ長押しで表示.
これ.
Android helper class for showing cheat sheets (tooltips) for icon-only UI elements on long-press. This is already default platform behavior for icon-only action bar items and tabs. This class provides this behavior for any other such UI element.
https://gist.github.com/romannurik/3982005
ポータブルにリスナー設置や適切なToast位置の指定や上下の振り分けができます.
すべては, 以下にあるやつ今現在最新のサンプルUI系をLollipopで動かす.
AndroidStudio の ImportSample のプレビューが表示されないので並べて置くと何かと便利かななどと思い.
パーツやふるまいの名前が分かればそれで良かったのでYouTubeのGIF書き出しでやろうかと思いましたが, 一般公開間近の非公開ステータス.
Nexus6でやってます.
こんな感じで40個くらい.
以下から順不同で.