我正在尝试获取一个浮动操作按钮,但是使用了其他尺寸,我尝试了一些链接,但没有一个起作用。任何帮助都很好
我尝试了代码,并试图在底部导航视图上方拍摄图像视图。但是点击片段后,它消失了。
<com.jediburrell.customfab.FloatingActionButton
android:id="@+id/floating_action_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|right"
android:layout_margin="16dp"
app:fabType="custom"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
app:fabShape="@drawable/fab_teardrop"
app:fabColor="@color/red" />
我正在尝试制作一个椭圆形的晶圆厂
答案 0 :(得分:0)
下面是工作代码
oval.xml (形状)
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval">
<solid android:color="@color/colorPrimary" />
</shape>
activity_main.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.design.widget.FloatingActionButton
android:layout_width="82dp"
android:layout_height="65dp"
android:layout_alignParentRight="true"
android:layout_alignParentBottom="true"
android:layout_margin="16dp"
android:background="@drawable/oval"
android:src="@android:drawable/ic_dialog_map"
app:backgroundTint="@drawable/oval" />
</RelativeLayout>
让我知道更多帮助