2015年6月2日火曜日

FloatingActionButtonをjelly beansで使うと四角になる場合の対処方法

SYSTEM_KDです。

先日、Android Design Support Libraryを試してみるの記事を書いた際に、手持ちのXperiaVLで「FloatingActionButton」を利用すると、上手くいかないということを少し書きましたが、どうも、Android 4.1 (jelly beans)で上手く動作しないようです。

問題点

Android 4.1 (jelly beans)で「FloatingActionButton」を利用すると、丸ではなく四角で表示される。

ng

こうなってしまう。

レイアウトは、普通。

<android.support.design.widget.FloatingActionButton
    android:id="@+id/fabtn"
    app:fabSize="normal"
    android:src="@drawable/ic_action_new"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" />

 

 

対処法

対処方はいたって簡単。

<android.support.design.widget.FloatingActionButton
    android:id="@+id/fabtn"
    app:fabSize="normal"
    app:borderWidth="0dp"
    android:src="@drawable/ic_action_new"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" />

 

app:borderWidth=”0dp”」を追加するだけです。

 

ok

 

以上、対処法でした。

0 件のコメント:

コメントを投稿