listview tag

54 questions


1 answers
140 views
0
Why do I have to press the button one more time?

<?xml version=1.0 encoding=utf-8?><LinearLayout xmlns:android=http://schemas.android.com/apk/res/android xmlns:tools=http://schemas.android.com/tools android:layout_width=match_parent android...


1 answers
95 views
0
Your content MUST have a ListView whose id attribute is 'android.R.id.list'

First of all, the contents of the XML file are as follows.<?xml version=1.0 encoding=utf-8?><ListView xmlns:android=http://schemas.android.com/apk/res/android android:layout_width=match_paren...


2 answers
85 views
0
This is a question when you dynamically add a list view item from another activity.

Place the listview and add item buttons in Main Activity.Press the button to go to B_Activity.In B_Activity, I want to read the view values when I click the finish button and add a list view item loca...

2 years ago

1 answers
143 views
0
There is a problem reloading the saved Checkbox value.

Hello. I'm developing an Android app, and after selecting a check box in the Listview in my app, I need to put a specific text in the ArrayList and save that part, and then turn it back on using the s...


2 answers
85 views
0
Get the db you want when you click on the view

Data imported from mysql has been scattered in the list view. When I click on the item in the list view, I'd like to show you other information about the data in pop-up format. There is a column calle...

2 years ago

1 answers
95 views
0
I would like to display the SSID, BSSID, and RSSI that are currently connected through WiFi Scan.

To date, scan the WiFi SSID, BSSID, and RSSI The BSSID and RSSI of the same SSID were made to output to one view.By the way, I want to express the SSID, BSSID, and RSSI that are connected to each othe...


1 answers
99 views
0
I want to know how to check the value of the column you want when you click on the item in Android ListView

Currently, I am using a list view with 4 columns using an adapter within the code.When I click an item here, I want to look up only some columns of the items that were clicked, so is there a way? @Ove...

2 years ago

1 answers
77 views
0
To save and retrieve values from a server in a list

I checked to get the value from the server, but the item I added from Asyncask is not caught in the search function.ㅠ onIf you add list.add(item) to Create, there will be no problem, but Asyncask does...

2 years ago

1 answers
98 views
0
I want to display the list with the value I received from the server, but I want to move on without adding the list with my name.

for (int i = 0; i < tName.size(); i++) { adapter.addItem(tName.get(i), tPhone_number.get(i), tAddress.get(i)); if (tName.get(i).equals(pref.getString(nickname,))) { }I will add information such ...

2 years ago

2 answers
88 views
0
How do I get each list in the list view clicked to a different place within the Fragment? (Beginner: There's coding)

public class SocialFragment extends Fragment { private static final String TAG = SocialFragment.class.getSimpleName(); View rootView; ExpandableListView lv; private String[] groups; private String[][]...

2 years ago
« - 2 - »

© 2024 OneMinuteCode. All rights reserved.