我需要在android eclipse中实现一个浮动操作按钮,点击后会导航到另一个活动。我不想在Android Studio中使用它。
答案 0 :(得分:1)
您可以使用官方的android设计库来创建FAB。 http://developer.android.com/tools/support-library/features.html#design
<android.support.design.widget.CoordinatorLayout
android:id="@+id/coordinatorLayout"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v7.widget.RecyclerView
android:id="@+id/recycler_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scrollbars="vertical"/>
</RelativeLayout>
<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="15dp"
android:layout_marginRight="15dp"
android:src="@mipmap/image"
app:fabSize="normal"
app:layout_anchor="@id/coordinatorLayout"
app:layout_anchorGravity="bottom|right|end"
app:rippleColor="#F03333"/>
检查这个答案,了解如何在eclipse中添加设计库: Using Support Design Library in Eclipse
答案 1 :(得分:0)
我想我找到了解决问题的方法:
这是一个链接http://www.truiton.com/2015/04/floating-action-buttons-android/
现在这里不是实际编译gradle,而是必须下载jar文件并将它们添加到eclipse中。
然后按照开发者网站上的说明操作:http://developer.android.com/tools/support-library/setup.html#libs-with-res
查看eclipse下的标签。
如果这对您不起作用,请查看:https://github.com/alopix/Android-FloatingActionButton-Eclipse(但请先检查第一个解决方案)