Popularity
2.9
Stable
Activity
0.0
Stable
129
5
22
Programming language: Java
Tags:
Button Widget
SubmitDemo alternatives and similar packages
Based on the "Button Widget" category.
Alternatively, view SubmitDemo alternatives based on common mentions on social networks and blogs.
-
Android-Bootstrap
Bootstrap style widgets for Android, with Glyph Icons -
circular-progress-button
Android Circular Progress Button -
SwitchButton
A cute widget of Switch Button for you to create beautiful and friendly UI. -
FloatingActionButton
[DEPRECATED] Android floating action button -
android-process-button
Android Buttons With Built-in Progress Meters. -
android-flat-button
FButton - a flat button library for Android -
Floating Navigation View
A simple Floating Action Button that shows an anchored Navigation View -
FABProgressCircle
Material progress circle around any FloatingActionButton. 100% Guidelines. -
ArrowDownloadButton
A download button with pretty cool animation -
FabButton
Android Floating ActionButton with a progress indicator ring -
CounterFab
A FloatingActionButton subclass that shows a counter badge on right top corner -
SlideSwitch
A widget you can slide it to open or close something -
HoldingButton
Button which is visible while user holds it. Main use case is controlling audio recording state (like in Telegram, Viber, VK). -
👏 MediumClap-Android
👏 The Medium's Clapping Effect developed in Android -
ExpandableButtonMenu
[DEPRECATED] An Android library for an expandable button menu -
hkm-progress-button
Base on android-process-button this is the advanced version of the android-process-button. -
Rx.Widgets
Materially inspired widgets and views that expose RxJava bindings. -
Composable Button Toggle Group
ComposableButtonToggleGroup is the implementation of MaterialButtonToggleGroup for Jetpack Compose -
Hugo Example
Bersikaplah terbuka terhadap setiap peluang secara fotografis. Memotret apa pun yang menarik mata Anda
Appwrite - The open-source backend cloud platform
The open-source backend cloud platform for developing Web, Mobile, and Flutter applications. You can set up your backend faster with real-time APIs for authentication, databases, file storage, cloud functions, and much more!
Promo
appwrite.io
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of SubmitDemo or a related project?
README
This is library project with a custom view that implements concept of Submit Button (https://dribbble.com/shots/1426764-Submit-Button?list=likes&offset=3) made by Colin Garven.
Demo
[](gifs/submitview.gif)
Usage
<com.tuesda.submit.SubmitView
android:layout_centerInParent="true"
android:id="@+id/submit"
android:layout_width="200dp"
android:layout_height="200dp" />
mSubmit.setOnProgressStart(new SubmitView.OnProgressStart() {
@Override
public void progressStart() {
// do something when progress start
}
});
mSubmit.setOnProgressDone(new SubmitView.OnProgressDone() {
@Override
public void progressDone() {
// do something when progress is done
}
});
public interface
函数名 | 作用 |
---|---|
setBackColor(int color) |
设置图标背景色,默认是绿色(0xff00cd97),上图Demo设置为蓝色(0xff0097cd) |
setText(String str) |
设置按钮名字,默认是Submit |
reset() |
将按钮重置到初始状态 |
setProgress(float progress) |
设置正在执行工作的执行进程 |
isProgressDone() |
正在执行工作是否完成 |
setOnProgressStart(OnProgressStart listener) |
设置progress开始回调 |
setOnProgressDone(OnProgressDone listener) |
设置progress完成回调 |