Karamunting.Android.CenkGun.ChatBar
1.0.5
dotnet add package Karamunting.Android.CenkGun.ChatBar --version 1.0.5
NuGet\Install-Package Karamunting.Android.CenkGun.ChatBar -Version 1.0.5
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Karamunting.Android.CenkGun.ChatBar" Version="1.0.5" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Karamunting.Android.CenkGun.ChatBar --version 1.0.5
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Karamunting.Android.CenkGun.ChatBar, 1.0.5"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Karamunting.Android.CenkGun.ChatBar as a Cake Addin #addin nuget:?package=Karamunting.Android.CenkGun.ChatBar&version=1.0.5 // Install Karamunting.Android.CenkGun.ChatBar as a Cake Tool #tool nuget:?package=Karamunting.Android.CenkGun.ChatBar&version=1.0.5
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
ChatBar for Android
A sweet message box designed for Xamarin.Android developers. Original (Java) library by https://github.com/CenkGun/ChatBar
Example
cb = FindViewById<ChatBarView>(R.Id.chatbar);
cb.SetMessageBoxHint("This is a Hint Message");
cb.SetSendClickListener(
v => {
Toast.MakeText(this, "Sending love", ToastLength.Short).Show();
}
);
cb.SetOnMicListener(
v => {
Toast.MakeText(this, "Recording...", ToastLength.Short).Show();
return true;
}
);
or
cb.SendClick += (s,e) => Toast.MakeText(this, "Sending love", ToastLength.Short).Show();
cb.MicClick += (s,e) => {
Toast.MakeText(this, "Recording...", ToastLength.Short).Show();
return true;
};
Changelogs:
- Add eventhandler
SendClick
&MicClick
. - Restore removed
.SetMessageBoxHint()
method.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
MonoAndroid | monoandroid71 is compatible. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
MonoAndroid 7.1
- Xamarin.Android.Support.v7.AppCompat (>= 25.4.0.2)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.