前人未踏の領域へ Androidアプリ開発編

Androidアプリ開発に関する調査メモ置き場。古い記事にはアプリ以外も含まれます。

2017-10-19から1日間の記事一覧

Layoutにstate_pressedを認識させる

課題 ConstraintLayoutにタッチフィードバックをつけたい。selectorのstate_pressedを使おうとしたが 反応しない。どうすればよいか。 対応 selectorのstate_pressedはViewがclickableでないと反応しない。 <android.support.constraint.ConstraintLayout android:clickable="true" android:focusable="true" android:background="?android:attr/selectableItemBackground" >android:fo…</android.support.constraint.constraintlayout>

RecyclerViewのaddItemDecorationについて

RecyclerViewに対して行間に区切り線(divider)をつけるときにaddItemDecoration()というメソッドを使用する。 このメソッドは2つあり、 addItemDecoration(ItemDecoration decor, int index) と addItemDecoration(ItemDecoration decor) である。てっき…