ListFragment is one of the specialized Fragment classes which has, by default, a ListView as its content view.
0
votes
0answers
7 views
Customising ListView
I want create a List View like this - please refer to the first screen shot here :
http://cdn8.techcyclo.com/wp-content/uploads/2013/05/Linkned.jpg
I'm assuming that is three listviews, can anyone ...
0
votes
0answers
8 views
Caused by: java.lang.ClassCastException: cannot be cast to android.app.Activity
I have been trying to solve this problem for a couple of days, but looks like it's beyond my skill.
I am trying to list some data from sqlite and each row should show some data with a few ...
0
votes
0answers
16 views
Replacing Fragment action not worknig properly its is over writng the layout
i m new in the field of android and trying to run a simple fragment code but i m unable to get the desired result.. as i press any of the three items in the list.. they are not replacing they are ...
0
votes
1answer
29 views
Listview populates, but the adapter claims to be empty
So I'm developing an app over the summer. It stores items in the database, displays them in a listview (otherwise makes Toast telling the user its empty), and allows users to see details by clicking ...
0
votes
0answers
13 views
bindView and newView of Custom CursorAdapter never called
I have written a ListFragment and Custom CursorAdapter, but the the method newView and bindView in the CursorAdapter are never called, but I don't know why. Where is the mistake?
...
0
votes
0answers
12 views
cwac Endless Fragment Demo Issue - Using Within My Own Fragment Format
I have a basic working app generated by using the ADT wizard. As a result I have a basic fragment format (1 ) which I have been using.
I want to take the demo code (2) and use it how ever if I take ...
0
votes
0answers
29 views
Replacing ListFragment with another within ActionBar - new listfragment replaces other fragments, IllegalStateException when pressing back
Okay, so I have a problem.
I have an activity, which controls an ActionBar. In it's onCreate i populate the actionbar like this:
protected void onCreate(Bundle savedInstanceState) {
//...some ...
0
votes
2answers
26 views
replacing android.R.layout.simple_list_item_1 with my own list
i wanna replace my own list instead of android.R.layout.simple_list_item_1 but iam getting the following error 06-15 18:28:29.604: E/AndroidRuntime(3291): java.lang.IllegalStateException: ArrayAdapter ...
1
vote
1answer
41 views
Create RSS Feed in ListFragment
[UPDATE]
The first problem is solved but there is no data printed yet.
If i uncomment the declaration of values variable, and i replace setAdapter with values , it works fine, but with data's ...
0
votes
1answer
24 views
why the listFragment with black background?
I build the listFragment but running it display black background.
look like that , left is the layout.xml look in eclipse layout editor, right is ruuning in emulator:
and I build the other new ...
1
vote
1answer
18 views
Strategy for displaying a progress indicator while loading data into an SQLite database?
My app consists of the following components:
a content provider for data stored in an SQLite database
a ListFragment that uses CursorAdapter to display data from the content provider
a service that ...
0
votes
1answer
37 views
DualPane: is the first fragment refreshed when I make a transaction on fragment 2?
I'm having a problem with the dualpane I implemented using this example: [http://developer.android.com/reference/android/app/Fragment.html][1]
Here's my code for fragment 1:
import ...
0
votes
1answer
19 views
Return different Fragment Types
I have the following method which gives back different Fragments:
@Override
public SherlockFragment getItem(int position) {
SherlockFragment fragment = null;
if (position == 0) {
...
2
votes
1answer
64 views
Android - ListView With Fragment issue
i have created list view with fragment. but there is some issue. check below image.
its happens only when screen rotate.
my code is below:
public class LListFragment extends SherlockListFragment ...
0
votes
2answers
29 views
Issue with Fragment on Android Developer Page
I was reading the documentation on Fragment on the Developer site. I created a new project targeting api 8:android 2.2. I have the Android Support Library install, and I added the android support ...
0
votes
1answer
17 views
SimpleCursorAdapter.ViewBinder - Apply differently to each row (ListFragment)
In my app, I pull 3 strings from an SQlite database to populate a ListView. In the listrow I have to TextViews and an ImageView.
The two TextViews are currently populated properly(with different text ...
0
votes
1answer
30 views
How to use OnListItemClick action to open a new ListFragment?
I have the following ListItem listener, which I want when I click in one of the list open up another list with different options.
public class MyList extends ListFragment {
...
public void ...
0
votes
0answers
128 views
How to implement listview with fragment, custom adapter, tabs and viewpager in android
I'm trying to implement an activity with a viewpager and two tabs in order to allow swipe gestures between sections, each one containing a listview with a custom adapter which loads datas from an ...
1
vote
1answer
46 views
Custom ArrayAdapter has made my ListFragment rows not respond to clicks
I have a custom ArrayAdapter called ResultsAdapter that, upon the selection of a specific row by a user, should open a new activity that details that specific row. This worked fine when the adapter I ...
0
votes
1answer
62 views
notifyDataSetChanged in Curser adapter not working with listfragment
I have a listfragment that displays a list from a database. I have everthing working correctly except for a small item that I can't seeem to clear up. The list view looks something like this.
...
0
votes
1answer
48 views
Android Fragment Dual Pane Orientation Error Binary XML file line #7: Error inflating class fragment
I have an activity that switches between dual-pane and single pane depending on orientation with a list fragment and a details view fragment
i.e.
Portrait: Single Pane = List fragment / detail ...
0
votes
1answer
54 views
Synchronize ListFragment and SupportMapFragment selection
I have 2 views of essentially the same data:
List of items in a android.support.v4.app.ListFragment
Markers on a map in a com.google.android.gms.maps.SupportMapFragment
Both of the above are ...
1
vote
2answers
51 views
Set TextView not changing
In the following code, I have a options menu and when I select the menu option, I want to update the textview. Setting the text initially works fine and no errors are generated. Here is the code where ...
0
votes
1answer
36 views
ListFragments Contain Same List
I'm writing an app for my church that uses ListFragments with Tabs + Swipe navigation. If I only have tab/listfragment, it displays just fine. However, if I have multiple tabs, the list in each ...
0
votes
1answer
71 views
Andorid: How to transfer Arraylist from one fragment to another
Hello stackoverflow,
I´m new to Android and have a question:
I want to tranfer the the fav Arraylist from the FavListFragment to the ApplistFragment.
Can someone tell me how to do this? I tried to ...
1
vote
1answer
49 views
Endless adapter onclick event
I'm trying to use the endless adapter in a list fragment context.
Everything is working pretty fine except for the click events on any of the item.
If the fragment is implementing onclicklistener, ...
1
vote
1answer
45 views
SearchView CSV ArrayList
I just started to program for Android.
I'm building this app for my internship but I'm stock with the search function.
I have a CVS file were I set the value in a ArrayList, for this I build a CSV ...
1
vote
0answers
49 views
ListFragment to display multiple pieces of data for each list item?
I am using a ListFragment to display search results that are returned from a REST call. The ListFragment only displays a single piece of data (a name), but I want it to display multiple pieces for ...
1
vote
1answer
48 views
Inflate context menu in a SherlockListFragment
How to create a Contextmenu from xml in a SherlockListFragment. i know (see in the examples)
@Override
public void onCreateContextMenu(ContextMenu menu, View v, ContextMenu.ContextMenuInfo menuInfo) ...
2
votes
1answer
94 views
Where am I going wrong with fragmenttransaction.replace() (ActionbarSherlock)
I have two classes that I am using, my main SherlockFragmentActivity and a SherlockListFragment. I'm trying to simply move from one to the other using a the actionbar navbar.
The problem is when I ...
1
vote
1answer
180 views
using bundle to pass data between fragment to another fragment example
I have 3 sherlockListFragments in my app. Every fragment has some editTexts and the last fragment has a button which when it's pressed all data in the first and second fragments should be accessed and ...
1
vote
2answers
110 views
2 ListView in a ListFragment only one onListItemClick
As I mentioned in the title, I have 2 ListView (lets call them A and B) in a ListFragment and only one onListItemClick.
When I click on a row of List A, my onListItemClick is called fine. But when I ...
1
vote
2answers
93 views
ListFragment with buttons for each row
I have an app, pretty much as this:
I have tried to follow this http://developer.android.com/guide/components/fragments.html (Creating event callbacks to the activity) But it seems it doesn't work. ...
0
votes
0answers
54 views
How to use Horizontal Swipe with FragmentPagerAdapter inside a fragment
I want to use the FragmentPagerAdapter inside a fragment that is taking half of the screen so that there is a fix fragment in the upper half of the screen and you can swipe the lower part of the ...
0
votes
0answers
150 views
java.lang.IllegalStateException: Content view not yet created
The "mMatchAdapter" is initialize at onCreate, but it is null in "setCursor", why?
This ListFragment is a tab of a tabHost, I use it to display list. I want change adapter in setCursor to display ...
0
votes
3answers
81 views
how can I make two listviews fetching from two sqlite tables in one activity in Android
I have one activity in which I need to display two lists that fetch from two sqlite tables. for every list, I am writing a customCursorAdapter Can anyone guide me to a useful example, or just how to ...
0
votes
0answers
25 views
Creating a bottom bar to control list views
I am working on an android app and have 2 questions regarding fragments -
1. I want to create a "Skeleton" for the whole application so the top part will be an actionbar, or app logo and the bottom ...
0
votes
0answers
165 views
Custom ArrayAdapter for ListView
I have implemented a custom array adapter for my ListView however it never iterates over the items in the collection provided. The arguments coming into the HistoryCustomArrayAdapter always have the ...
0
votes
1answer
97 views
setOnItemClickListener not called in onCreatView method?
I am developing first android apps and I have a fragment class which extends SherlockListFragment. When I set setOnItemClickListener in onCreateView and implement onItemClick I'm getting no response ...
0
votes
3answers
106 views
ListFragment Replace “addView(View) is not supported in AdapterView” after switching from SupportFragmentManager to FragmentManager
I have an activity which has a fragment. When I click on a list item the current fragment gets replaced with another fragment. This used to work correctly...
However, I would like to move away from ...
0
votes
1answer
68 views
How to run a method of a fragment from an activity, using Tags?
I've got a little app in which I created three swipeable tabs using eclipse. One of these is a common fragment while the second and third are ListFragments each of them gets it's data from a Cursor.
...
2
votes
3answers
77 views
ListFragment with different Layout
I am working on Fragment-ListView and having output showing in image.
every Click changes TextView of fragment2.till now ok.
fragmetn1 is for listView and fragment2 is for DifferentView.
now i want ...
0
votes
2answers
104 views
ListFragment is empty after going back
I have a simple activity built with HoloEverywhere with one fragment container. ListFragment appears there on start, and appears normally. Then, click on list item replaces ListFragment with another ...
0
votes
0answers
26 views
stop Fragment from moving up in an activity
I have one activity in which there are two fragments in left and right side.The left-Fragment is ListView with a button in bottom. Right Fragment is like a form which is having edit boxes. On filling ...
1
vote
1answer
117 views
Android ListFragment: how to have both onListItemClick and onContextItemSelected?
I'm implementing a ListActivity and ListFragment and would like to allow the user to use short taps and long taps - short being to edit/show the details of the item and long tap to bring up a context ...
0
votes
2answers
145 views
Unable to pause activity - nullpointerexception
This is caused from a SherlockListFragment (within a TabSwipe) and an AsyncTask doInBackground.
Clicking on a list item starts generating a big parcelable item which, when finished, should move to a ...
0
votes
0answers
100 views
FragmentActivity can not use ListFragment (SherlockFragment)
extend SherlockListFragment doesnt work; It gives ClassCastException error. I tried SherlockFragment instead of SherlockListFragment and it worked. How can I work with SherlockListFragment ?
I m not ...
0
votes
1answer
155 views
Populate list of custom view using ListFragment
I am trying to show elements in a list view using Fragments. I created my custom view as follow
graphical representation of list_row.xml
list_row.xml
<?xml version="1.0" encoding="utf-8"?>
...
0
votes
0answers
46 views
Error inflating layout DSLV library
When I am launching my application, I am getting the error:
04-29 10:20:15.655: E/AndroidRuntime(24548): android.view.InflateException: Binary XML file line #2: Error inflating class ...
0
votes
2answers
216 views
Android: content view not yet created when using listview in fragment?
I have fragment with two tabs, Each tab has it's respective fragment. each tab has its own list which is load from server. but my apps encountered exception like
java.lang.RuntimeException: ...




