在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称(OpenSource Name):jamesmontemagno/FloatingActionButton-for-Xamarin.Android开源软件地址(OpenSource Url):https://github.com/jamesmontemagno/FloatingActionButton-for-Xamarin.Android开源编程语言(OpenSource Language):C# 87.7%开源软件介绍(OpenSource Introduction):Floating Action Button for Xamarin.Android and Xamarin.FormsPorted from: https://github.com/makovkastar/FloatingActionButton DescriptionAndroid floating action button which reacts on scrolling events. Becomes visible when an attached target is scrolled up and invisible when scrolled down. Integration Xamarin.Android1) Add the NuGet to your Project: https://www.nuget.org/packages/Refractored.FloatingActionButton/ 2) Add the <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:fab="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ListView
android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<Refractored.Fab.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|right"
android:layout_margin="16dp"
android:src="@drawable/ic_action_content_new"
fab:fab_colorNormal="@color/primary"
fab:fab_colorPressed="@color/primary_pressed"
fab:fab_colorRipple="@color/ripple" />
</FrameLayout> 3) Attach the FAB to var listView = FindViewById<ListView>(Android.Resource.Id.list);
var fab = FindViewById<FloatingActionButton>(Resource.Id.fab);
fab.AttachToListView(listView); Check the sample project to see how to use custom listeners if you need to track scroll events. 4) Add the namespace
5) Set an icon for the Integration Xamarin.FormsSee sample app for integration XAML Example: <?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="Microsoft.Mvpui.ContributionsPage"
xmlns:fab="clr-namespace:Refractored.FabControl;assembly=Refractored.FabControl">
<ContentPage.Content>
<AbsoluteLayout VerticalOptions="FillAndExpand" HorizontalOptions="FillAndExpand">
<ListView
AbsoluteLayout.LayoutFlags="All"
AbsoluteLayout.LayoutBounds="0,0,1,1">
</ListView>
<fab:FloatingActionButtonView
ImageName="toolbar_add.png"
ColorNormal="{StaticResource Primary}"
ColorPressed="{StaticResource PrimaryDark}"
ColorRipple="{StaticResource PrimaryDark}"
x:Name="FloatingActionButtonAdd"
IsVisible="False"
AbsoluteLayout.LayoutFlags="PositionProportional"
AbsoluteLayout.LayoutBounds="1, 1, AutoSize, AutoSize"/>
</AbsoluteLayout>
</ContentPage.Content>
</ContentPage> LinksCountry flag icons used in the sample are taken from www.icondrawer.com LicenseThe MIT License (MIT) Copyright (c) 2017 James Montemagno / Refractored LLC Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. This is a derivative of Melnykov Oleksandr's Floating Action Button: https://github.com/makovkastar/FloatingActionButton under MIT |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论