Android Tutorial ListView tutorial

electronik54

Member
Licensed User
Longtime User

i have taken care of empty cursor using If Cursor15.rowcount>0 Then i just need help with my above mentioned problem everything else works fine. i just need help with the code
 
Last edited:

stevel05

Expert
Licensed User
Longtime User
OK, but that comes after the assignment of

B4X:
cursor15.rowcount = FindRow

But that was just an observation, My first paragraph had a suggestion that may provide help with your code.
 

klaus

Expert
Licensed User
Longtime User
You should put these lines out of the loop.
The layout definitions are the same for all entries.
B4X:
FA_s_lv.ScrollingBackgroundColor = Colors.White
FA_s_lv.TwoLinesAndBitmap.Label.TextSize = 15
FA_s_lv.TwoLinesAndBitmap.Label.TextColor = Colors.Black
FA_s_lv.TwoLinesAndBitmap.SecondLabel.TextSize = 13
FA_s_lv.TwoLinesAndBitmap.SecondLabel.TextColor = Colors.DarkGray
What are Position and Findrow supposed to do ?
You are doing nothing with them in the routine.

The code should work OK, what do you expect.
If you click on an item in the ListView what do you get ?

Best regards.
 

electronik54

Member
Licensed User
Longtime User

yup you pointed out my mistake(i already knew about that) but i need the solution code. i cant figure it out, i am absolutely new to coding. can you make changes to my code so my problem can be solved. i have column in the DB for ID (its 01, 02, 03 likewise for each entry) how do i use that to find correct clicked item?
 

stevel05

Expert
Licensed User
Longtime User
Have a look at AddTwoLinesAndBitmap2 you can add the ID to and get it returned from the listview.

If that doesn't help, you'll need to post some more code or preferably, zip and post the project so we can see exactly how you are trying to make it work, there is not enough code there to get a tested, working response.
 
Last edited:

electronik54

Member
Licensed User
Longtime User


when i search the DB for certain items it returns me the list of those items. now when i click on the first item of the searched list(which can be any where in the DB) it displays info about the first item in the DB(when its supposed to show info about the clicked item in searched list).i know why this i happening, what i want is the solution to the problem.
 

klaus

Expert
Licensed User
Longtime User
Not sure I understand exactly your problem ?
Sorry, but with just a few code snippets and no precise explanation it's very difficult to help.
Post a small project showing the problem (or the whole project if it's not too big) as a zip file so we could test it in the same conditions as you do otherwise we need to guess what you could have done wrong and we are turning in circle.

Best regards.
 

luke2012

Well-Known Member
Licensed User
Longtime User

It's possible to have a SingleLine with bitmap ?
 

mitsusdev

Member
Licensed User
Longtime User

i have a simple list defined in design, i must inizializate the list view for remove a runtime errror.
but list view don't show the items, why ?

B4X:
Sub Globals
    'These global variables will be redeclared each time the activity is created.
    'These variables can only be accessed from this module.

    Dim ListView1 As ListView
End Sub

Sub Activity_Create(FirstTime As Boolean)
    'Do not forget to load the layout file created with the visual designer. For example:
   
    Activity.LoadLayout("Main")
   
    ListView1.Initialize("ListView1")
   
    ListView1.AddSingleLine("AAA")
    ListView1.AddSingleLine("BBB")
    ListView1.AddSingleLine("CCC")
End Sub
 

Orazio8909

Member
Licensed User
Longtime User
Hello guys,

I have recently joined the community of B4A, I'm creating a game and I would like to enter the objectives to unlock during the game, given that I searched on google and on the forum but did not find anything, I wanted to know if it was possible to add a progressbar in a listview in such a way as to have a small description and above and below have a progressbar that indicates the completion status of the lens itself. Thanks in advance to all those that I will respond.
 

Orazio8909

Member
Licensed User
Longtime User
I figured you could not do. thanks for your response. I'll try to take a look at the library Erel (CustomListView class).
 

imgsimonebiliato

Well-Known Member
Licensed User
Longtime User
Hello,
when I place a bitmap, what are the standard dimensions?
How can I change them?
 

Kwame Twum

Active Member
Licensed User
Longtime User
I wonder how I'll be able to allow a user to delete an item from a listview upon long clicking and displaying a menu to them... any help?
 
Cookies are required to use this site. You must accept them to continue using the site. Learn more…