Tagged Questions
0
votes
2answers
68 views
Android - Multilevel Listviews
I am relatively new to Android and working with an online API. I have two activities. The first activity is bringing up a list of search results and placing them into a ListView. This is not a ...
0
votes
0answers
33 views
starting new activity from json listview
I am new to android and I'm trying to make an application to my website.
I have a webservice json that shows items in a list view in android.
This list shows only 3 items.
I need to implement this ...
0
votes
2answers
25 views
How to open a Intent with data according to the item clicked on a ListView?
I have a ListView, actually generated by parsing a XML file downloaded from Internet.
This XML file contains data about a person: IdNumber, Name, Age, PhotoURL, Birthday, Phone numbers, Email ...
0
votes
1answer
40 views
Execute a thread of an activity based on item position clicked in ListView
Okay, here is the the problem I am having. I am developing a simple messaging client similar to the OEM one found on Android devices.
I currently have a ConversationList.java containing a ListView ...
2
votes
0answers
68 views
Location show on map according to list?
I am trying to fit a Google Mapview and a ListView into one activity. The Mapview shall take 2/3 of the upper side, and the list 1/3 of the lower side (in portrait).
in this way assume it as ...
0
votes
3answers
54 views
Logcat error. Issue when trying to change a textview value
Probably a simple error but the logcat is confusing me. I have just passed a variable 'name' from a listview to this activity and want to change the title textview to that variable using... ...
0
votes
1answer
139 views
Google Maps And ListView in one activity in android?
I am trying to fit a Google Maps View and a ListView into one activity. The MapsView shall take 2/3 of the upper side, and the list 1/3 of the lower side (in portrait).
in this way assume it as ...
1
vote
0answers
49 views
android custom listview with unbound data item
I have created an activity that contains a listview with a custom row view.
Row View:
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/tableLayout"
...
0
votes
1answer
40 views
Crash at creating Activity
I have some problem at changing to a separate activity in my app.
The called activity is added to the manifest, so this isn't the problem (would have been too easy, right?)
This is my main activity, ...
1
vote
1answer
62 views
ListActivity not started unless I leave the app and come back
Have an Android app that is working fine on Android 2.3.6 devices and all 4.x virtual devices. However I've gotten reports from a user that on several devices running 4.0.4 - 4.1.1 one activity ...
0
votes
1answer
23 views
Change Activity Button State from Adapter
I have a ListView in my Activity, and I have to change my DeleteButton state (VISIBLE - GONE), when user checks/unchecks the checkboxes on any of ListView's items.
I tried doing something like this:
...
1
vote
2answers
83 views
Android: How to change a drawable in a item list from other Activity
I'm starting with Android, I could create a ListView and it works perfect. This list contains an image representing a task status (active or inactive), when clicking on a list item opens a new ...
0
votes
2answers
56 views
Two ListView in same activity
I want to build one activity with two listviews. One that scroll horizontally. One that scroll vertically. The two adapter attached are customized with image and text and load their data from two ...
-2
votes
1answer
32 views
Combining Code in Main Activity
I have used the template for creating tabs and swipe procedurals in android but have now not been able to create a list within the main activity. How can I combine the following two sections of code?
...
0
votes
1answer
50 views
adding search field to listView wrecked my code
im having a problem that I guess its a simple solution, but i can't figure it out...
I have an activity with a listview and a search field, when i click on an item, it loads a new view with a content ...
3
votes
1answer
194 views
How to work, when listview inside the scrollview?
I doing this In Android 1.6 and 2.2 ...
I have One ScrollView in the Activity (All the content in the ScrollView) ...
And Second is, One ListView in the Activity ....
When I Scroll ListView, at ...
0
votes
1answer
145 views
Android Layout - ListView taking too much space
Well hello there!
I ran into a problem in Android (I am also new to Android).
First of all I have 2 Fragments. 1 Fragment contains a ListView where I show the music on my phone. The 2nd Fragment ...
1
vote
2answers
29 views
Display a ListView in class View
Sorry I recreate my post and PLZ this time just answer if you know or have an idea about the answer, i'm tired about people answering "Why you do that ?" Or "Omg you don't know Android ?".
In my ...
-1
votes
2answers
274 views
JSON Android And Listview
Iam looking for a good tutorial to JSON and parse them into Listview in Android.
but the problem is my json file is like this
...
1
vote
2answers
95 views
How I can use onListItem to start a new activity with the ListView Value?
Hi I have a android application and i use a sqlite database and a listview in my Activity.
Now I want to use onListItemClick but I don_t know how I can get the value that I click and open a new ...
1
vote
1answer
128 views
android delete any item from listview deleting last element
I made a list view u can delete an item by touch the row of that listview, but it always deleting the last item, and after some delete times it shows index out of bound error
system was when u toch ...
0
votes
4answers
188 views
How I can select a value in my Android ListView and send this Information to a other Activity?
Hi I want to built a android a application with a ListView and if I select a value in this ListView I want to start a other activity with this value. The Problem is I don't know how I can click on a ...
0
votes
1answer
220 views
How would I switch to a new activity using an ArrayAdapter, ListView, and a Menu adds items based on User Input
An app I am designing is based around a Menu whose items are created by the user typing into an EditText and then submitting the text by Button click. I also want to be able to go to a new activity ...
0
votes
2answers
135 views
Android: How to set a default ListView with sharedpreferences?
What I want to do is:
When my application loads for the first time, I want it to load with my default ListView that has 1 item inside named "New Item", and later on if changes will be made to my ...
1
vote
2answers
226 views
Android: How to edit my ListView in another activity and return the edited result to the ListView
So I have a listview in my activity1 class, what i want to do is:
Click on an item in the listview, which will open activity2 class, with 2 edit texts with the values from the clicked item in the ...
0
votes
4answers
320 views
Android two listview in a view
Two listviews which are showing different data in layout XML file and there is the code:
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
...
0
votes
1answer
80 views
List item couldn't pop out dialog when clicked
I have changed this class extends with Acitvity and before that it was extends with ListActivity, this is because I like to use setEmptyView for this class. But after I changed this class extends with ...
0
votes
0answers
182 views
Selecting and Highlighting an Item of ListView in android
I want the item to be highlighted and selected at the same time in my list view. After that I want the text of the list item to be passed in an intent after a swipe gesture is performed. I am ...
0
votes
4answers
119 views
Ways to refresh a ListView
I have an Android app with a ListView. Every row is generated dinamically by SQLIte query results. When users click on a item, the app should refresh the list with the "content" of that item, ...
0
votes
1answer
195 views
How do you implement a FragmentActivity into your FragmentPagerAdapter?
I have a section my class which is for handling what fragment to load for the FragmentPagerAdapter. Right now it loads fragments just fine but now I want to implement a FragmentActivity and I am ...
0
votes
0answers
643 views
How to convert an Activity to FragmentActivity?
So far this is what I attempted. This is from the Activity that sets up the fragments. This is the method for loading the fragments.
@Override
public Fragment getItem(int i) {
Fragment f = new ...
0
votes
3answers
179 views
Can I use one layout with 2 activities?
Can I use one layout with 2 activities?
I have an activity called "download.java" and one called "upload.java) and ONE layout called "main_site.xml".
"download.java" is the MainActivity
It shows 2 ...
1
vote
1answer
130 views
How to store activity's state and retreive back onResume
I have a main activity with a ListView containing a list of names. On click of the list item, 2nd activity will be fired. On pressing BACK button on the 2nd activity, i should come back to the 1st ...
5
votes
3answers
186 views
Delay between One Activity to Another Activity
I develop one application in Android. Which contains so many data (String) and images. string data are come from database and images comes from /res folder.
In My Application First Activity shows ...
1
vote
2answers
174 views
android - passing data to main activity from class
I'm trying to implement a facebook app according to the example in the facebook-android-sdk .
I'm changing it a little bit and I'm having a difficult about someting which is very basic.
I'm having ...
1
vote
1answer
102 views
Populate custom listview when I click on another custom listview item
I have two listviews with custom adapters. The first listview contains names of lists. When I click on the name of a list, the second listview have to be populated with the contents of the clicked ...
2
votes
1answer
148 views
Leading user to new activity clicking on item in ListView
ListView is created from Cursor with data from DB.
Clicking on each item in ListView leads user to a new Activity/Page/Layout/WHAT? where additional info + pictures about the item are shown.
Do I ...
1
vote
5answers
250 views
How I can start a Activity if I click in A Item in a ListView
I write a Android Application and I use a ListView and it works fine but if I want click on a Item then I want start a second Activity with the selected Item. For this I want to use OnItemClick but it ...
0
votes
3answers
319 views
how to listview image passing another activity
i'm beginner of android development.
this is my list images code.
it won't passing images another activity. why it don't passing images another activity. can anyone fix it?
public View getView(int ...
0
votes
2answers
95 views
ListView in my Android
I have attemmpted to make a. ListView. But it won't work. I click this button in the main activity and it crashed.
<Button
android:layout_width="fill_parent"
...
0
votes
1answer
79 views
I Have a Basic ListView, but How to Link it to Activities?
I'm lost, so can I please have some help on how to link the list items to seperate activities? I have it to explain the different species available for what I am trying to do. It displays stuff such ...
1
vote
4answers
166 views
Android ListView - how to predict how many row can be displayed
Since Android has different size of layout, the number of rows can be shown in the ListView is therefore variable, ideally, we need to perform API call like..
...
1
vote
1answer
284 views
send listview data to another listview and activity
I have a problem with my android application.
I need to show all files from a folder which user 'chooses' from the listview.
It works well if i do that in one activity, but i need to make it show ...
2
votes
2answers
543 views
How to show loading message or dialog or image in an android activity while processing before the activity is finished?
I have an Activity "A1" and a ListActivity "A2"
I take inputs from user in Activity "A1" and depending on the inputs given by user I process and generate a result list. The list generated will then ...
0
votes
1answer
1k views
Android: Populate ListView in a fragment
I have a activity that fills a ListView, and it is working. Because I use a tabs ViewPager, I have to use fragments instead of activities. So can somebody tell me what I need to change to make a ...
0
votes
3answers
1k views
Android listview disappears after screen rotation
On my layout, I have some buttons tho make some choices and then one button to perform a query to a database. The result of this query is shown in a ListView inside this layout.
The problem is if ...
0
votes
1answer
631 views
android using setlistadapter() without extending listactivity
lots of searching and reading has not provided the answer to this problem.
my activity does not extend ListActivity so this line throws an error.
setListAdapter(fileList);
it is supposed to populate ...
0
votes
0answers
30 views
android how to refersh list view after back clicked
i have a chat application and a list of friends in a list view.
when a new message arrives, i have this small message icon near user's row in the list view.
after clicking the user's row, i'm ...
0
votes
1answer
128 views
ListView update
I have two activities with ListView. This two activitises have individual layout-file. First have myListView01, second have myListView02. How to update listView's adapters?
I do so:
ListView list = ...
0
votes
2answers
200 views
Activity refresh command from custom listview
Environment: Android 2.2+
I have an Activity. The Activity creates a custom listview with its adapter and populates it. When the user clicks on an item (an ImageView thumbnail) in the list, a context ...




