B4A Question [SOLVED] How to "dim" the soft buttons? - wonder    Jan 29, 2015 Hey guys!
I noticed that some apps and games are able to "dim" the soft buttons on my...
http://s4.postimg.org/rraldwkwd/IMG_9936.png
Dimmed Soft Buttons
This is a pretty cool effect! How... B4A Tutorial Handle the soft keyboard with the IME library - Erel    Jul 6, 2025   (30 reactions)   tags: IME this powerful feature is that interacting with the soft keyboard can be sometimes quite complicated.
This library includes several utilities that will help you better handle the soft keyboard.
The attached... editor code (for each activity):
SetActivityAttribute(main, android:windowSoftInputMode... B4A Library [B4X] [XUI] AS TextFieldAdvanced - Title, Information, Counter, Password, Button, Prefix, Suffix, Icons, Multiline - Alexander Stolte    Aug 25, 2025   (63 reactions) text. Additionally you can make the TextField a button, so that you can open menus, but still keep... Initializes the fields to their default value. AS_TextFieldAdvanced Events: ButtonClick ClearButtonClick EnterPressed FocusChanged (HasFocus As Boolean) LeadingIconClick PasswordRevealChanged (Revealed... Call Refresh if you change something getButtonTextLabel As B4XView getClearAndRevealButtonColor As Int Call Refresh if you change something getClearButtonLabel As B4XView getCounter... B4A Question How to add image to button with text ? - mr.gedo    May 14, 2020 Hello everyone how can i add image with text to the button like this ? 94046... B4A Question Add (+) Button - brodmuehler    Mar 5, 2017 Hi is there a way to generatethe typical add buttons (plus sign)? https://i.stack.imgur.com/3q3vg.png Thanks a lot. Kind regards René... B4A Question How to click a button to select an image and determine if the image size is greater than 600KB...... - bskotu555    Jan 28, 2025 How to click a button to select an image and determine if the image size is greater than 600KB. If... Private Sub Button1_Click CC.Show("image/*", "Choose image") 'CC.Show... As String, FileName As String) If Success = True Then Dim TargetSize As Int =600 * 1024 Dim FileSize As Long = File.Size(Dir, FileName) If FileSize > TargetSize Then... (Img As B4XBitmap, MaxSize As Long, OutputFolder As String, OutputFile As String)'图片压缩算法 Dim... B4R Question Why Dim mask As ULong = 2147483648 <> 0x80000000 ? - peacemaker    Jul 10, 2025 (BinaryToString_ULong2(1))
End sub
Sub BinaryToString_ULong(value As ULong) As String
Dim result As String = "0b"
Dim mask As ULong = 2147483648 'highest bit = 1, 2147483648
Dim... B4A Question Why "Dim clv As CustomListView = Activity.GetView(0).tag" not work? - Filippo    Jul 12, 2022 Hi, Why this line code (see title) does not work(see error message)? But the line code "Dim btn As Button = Activity.GetView(1)" yes? With other customview it works too. Sub Activity_Create(FirstTime As Boolean) Activity.LoadLayout("Layout") Dim clv As CustomListView = Activity.GetView(0).tag Log("clv.IsInitialized=" & clv.IsInitialized) Dim btn As Button = Activity.GetView(1) Log("btn.IsInitialized=" & btn... B4A Library SoftOrientation Library for Activitiy and B4XPages based projects - Ivica Golubovic    Nov 12, 2022   (16 reactions) content that must be filled again, CheckBox will reset its status, also RadioButton etc.)
Also, one... the SoftOrientation library provides the following possibilities:
Prevents killing the activity and... B4A Code Snippet [B4X] B4XDialog with adjustable button widths - Erel    Nov 4, 2025   (22 reactions) Next Next End Sub Usage: Private Sub Button1_Click Dim rs As Object = Dialog.Show...168092 Cross platform code to adjust the button widths based on their text. 'Canvas1 is a global B4XCanvas used for measuring the text (see attached example). Private Sub ArrangeButtons(Dialog1 As B4XDialog, Canvas1 As B4XCanvas) Dim offset As Int = Dialog1.Base.Width - 2dip Dim gap....GetAllViewsRecursive If Initialized(btn.Tag) And btn.Tag = BtnType Then 'ignore Dim... Page: 1   2   3   4   5   6   7   |