Android Material 设计中是否有用于浮动操作按钮的本机组件?
Is there a native component for the Floating action button in Android Material Design?
我的问题围绕 Android Material 设计中引入的 Floating action button。
GitHub 上有许多图书馆提供此组件,如:
- Android-floating-action-button
- FloatingActionButton
- CircularFloatingActionMenu
- Fab
- Floating-action-button
但我的问题是:
android.support.vX
的最新版本是否有为 Floating action button
构建的本机组件?
组件如:
- android.support.v7.cardview
- android.support.v4.widget.DrawerLayout
- android.support.v7.widget.RecyclerView
- ...
还没有,有迹象表明我们将在下一个支持库中看到它。
您可以在 md 按钮上使用 class md-fab,然后在 md 按钮内添加一个带有加号之类的跨度。还有其他 md-fab classes 像 md-fab-bottom-right 可能会帮助你。您也可以在 md-button 中使用 md-icon
<md-button class="md-fab"><span class="glyphicon glyphicon-plus" /></md-button>
今天 (29/05/2015) 新的 Material 设计支持库正式可用。
只需将此依赖项添加到您的 build.gradle
compile 'com.android.support:design:22.2.0'
将此视图添加到您的布局中:
<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="end|bottom"
android:src="@drawable/ic_done" />
并使用它:
FloatingActionButton fab = (FloatingActionButton) findViewById(R.id.fab);
fab.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
//TODO
}
});
以上所有答案现在都已过时。
FABS 可作为 Material 组件的一部分用于 Android:
https://material.io/develop/android/docs/getting-started/
不要错过带有工作示例的 Catalog 应用程序:
https://github.com/material-components/material-components-android
我的问题围绕 Android Material 设计中引入的 Floating action button。
GitHub 上有许多图书馆提供此组件,如:
- Android-floating-action-button
- FloatingActionButton
- CircularFloatingActionMenu
- Fab
- Floating-action-button
但我的问题是:
android.support.vX
的最新版本是否有为 Floating action button
构建的本机组件?
组件如:
- android.support.v7.cardview
- android.support.v4.widget.DrawerLayout
- android.support.v7.widget.RecyclerView
- ...
还没有,有迹象表明我们将在下一个支持库中看到它。
您可以在 md 按钮上使用 class md-fab,然后在 md 按钮内添加一个带有加号之类的跨度。还有其他 md-fab classes 像 md-fab-bottom-right 可能会帮助你。您也可以在 md-button 中使用 md-icon
<md-button class="md-fab"><span class="glyphicon glyphicon-plus" /></md-button>
今天 (29/05/2015) 新的 Material 设计支持库正式可用。
只需将此依赖项添加到您的 build.gradle
compile 'com.android.support:design:22.2.0'
将此视图添加到您的布局中:
<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="end|bottom"
android:src="@drawable/ic_done" />
并使用它:
FloatingActionButton fab = (FloatingActionButton) findViewById(R.id.fab);
fab.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
//TODO
}
});
以上所有答案现在都已过时。
FABS 可作为 Material 组件的一部分用于 Android: https://material.io/develop/android/docs/getting-started/
不要错过带有工作示例的 Catalog 应用程序: https://github.com/material-components/material-components-android