旋转到横向后仍然旋转后,Android按钮看起来不同

时间:2015-05-30 22:18:36

标签: android shape material-design layer-list floating-action-button

我在this教程之后创建了我的按钮。它看起来很不错。

但如果我将设备屏幕旋转为横向,则该按钮看起来不同。 你有什么想法,为什么会这样? 如果您需要一些代码,请告诉我们!

按钮应该:

Button as it should

旋转后的按钮:

Button as it after rotating

1 个答案:

答案 0 :(得分:1)

我建议您使用Android Design Support Library中包含的FloatingActionButton。

只需将compile 'com.android.support:design:22.2.0'添加到您的Gradle文件中,然后将FloatingActionBar视图类用于您的布局!

示例:

<android.support.design.widget.FloatingActionButton
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:clickable="true"
    android:src="@drawable/your_drawable" />