The custom-lists tag has no wiki summary.
-1
votes
0answers
25 views
Android on Long Click is not working properly - custom list
my custom listview is not working properly. it works fine till i didnt scroll to the end, but as i scroll to end its onclick feature stop working, i m using custom list extending base adapter..
i ...
0
votes
1answer
43 views
ListViewItem added more times
In my app I have a Listview with my own ListItemStyle (own XML). My Code to add an Item to the ListView looks like this:
Schueler s[] = new Schueler[]
{
new Schueler("vName", "nName", new ...
0
votes
1answer
74 views
Copy All list items to another list in SharePoint 2010 WSS
I have created two custom lists And able to copy list item from one list to other using work flows in sharepoint designer 2010.but my requirement is to copy all the items in one list to another using ...
0
votes
0answers
30 views
How to use custom adpter with endless adapter
I am trying to work with endless adapter , i followed this example
http://droidista.blogspot.com/2011/04/using-cwacs-endlessadapter-with-custom.html
and
I have tried this code
public class ...
0
votes
2answers
46 views
How to make a custom listview clickable
I'm having trouble making a listview item clickable. I've tried if statments, onclicklisteners and I'm still not having any success, does anyone know how to do this? I also have another class to get ...
1
vote
1answer
43 views
custom ListView not shown properly
I am facing this exception: java.lang.UnsupportedOperationException: addView(View, LayoutParams) is not supported in AdapterView
Here is my code:
protected void onCreate(Bundle paramBundle)
{
...
1
vote
2answers
64 views
How to detect which button and at which position clicked in CustomList
I am using a custom listview in which i have two button for every item. following is the my item xml.
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
...
0
votes
3answers
51 views
android custom list not displaying
I'm having a problem in displaying the custom list i checked the array and it was not null but still the list is not displaying:
Adaptor class:
public class ReportAdapter extends BaseAdapter{
...
1
vote
1answer
180 views
How to create custom image view like custom list view?
I want to make one application which contains multiple choice question. Each question has three option. I want to show that option with one background image. And also want to change the color of that ...
0
votes
2answers
29 views
Android Custom List, Unexpectedly close application
I am using the following code to to display data in my custom list. but it closes with an exception of unsupported operaton. java.lang.UnsupportedOperationException: addView(View, LayoutParams) is not ...
0
votes
1answer
89 views
How to create second row in Custom ListView dynamically populated by Contacts?
I have following code for fetch contact detail from local DB and assigning the name and number to Custom ListView
public class Rabtaye extends Activity {
ListView msgList;
...
1
vote
1answer
245 views
Custom ListView text color not changing according to theme when inside a Viewpager
In my app I am having a ViewPager in the main-screen out of which 2 fragments have custom ListViews. The app has different themes with different text colors in each theme.
I have implemented all the ...
0
votes
2answers
184 views
How to populate Contacts from Phone to Custom Listview?
I created a Custom ListView using BaseAdapter now I want to populate this Listview with Contact Name and Number from Phone book..I am trying this..
import java.util.ArrayList;
import ...
0
votes
0answers
508 views
Custom List anonymous access in sharepoint 2013
I have created a SharePoint 2013 app(SP hosted app). I created custom list and stored items into it but i am having problem when i try to access custom list from different web browser
which clearly ...
2
votes
1answer
291 views
how to group radio buttons in custom listview
I am working with custom listview with images and radio buttons. Now I want to group these radio buttons. Here is my xml and the java class program.
<?xml version="1.0" encoding="utf-8"?>
...
0
votes
1answer
254 views
custom listview when scroll up then progressbar process hide
I found some similar questions, but could not solve the problem. I have a custom Listview, where each item contains a horizontal progressbar. But when the list contains many items, and I use the ...
0
votes
2answers
79 views
Placing listview in Getview method in Android
I have a custom list created with getView method, and i want to place another custom listview in each row on that custom list. Which should look like:
Row1
List
Text1 Text2
...
1
vote
1answer
74 views
calling getview() method in custom listview
i am using custom listview with text and arrow image at right of the list row.
i have the following
1: MainActivity extends ListActivity
2: SpecialAdapter extends ArrayAdapter have getView() ...
0
votes
0answers
170 views
Custom ListView doesn't save it's state
I was using standart android ListView with simle_list_item_multiple_choice item layout and custom adapter. It saved it's stated on pause and restored on resume. But after few days of working on I've ...
5
votes
2answers
404 views
Updating the Progress Bar in the list view
I have a scenario, In my chat application I want to send photos, photos sending takes time. I have attached a progress bar( horizontal) to show the progress of sending the photo in my application. But ...
1
vote
2answers
188 views
Getting radio button value from custom list in android
I have a custom listview and a radio button in each row, it works properly but i want to reach id of selected radio button from this code. For example when i need the textview1 value of selected row, ...
1
vote
0answers
94 views
The child views of the my parent ViewGroup remains unchanged and gets displayed in my new inflated layout at the bottom
Inflation using Array Adapter - The inflated layout does not fill my full screen.
The views present in the parent View Group get displayed at the bottom of my newly inflated layout. The inflation is ...
0
votes
4answers
2k views
Sharepoint 2010 - Hide “Title” field in Custom Content Type
Now I'm defining a new Custom List Definition within a Custom Content Type, The problem simply is the Title field associated with the list can't be hidden, I have followed some approaches found in the ...
0
votes
3answers
152 views
Error while scrolling custom ListView [closed]
I am creating app in which i am displaying data in custom ListView......the data is coming from XMLHandler. but, when i scroll the list it gives null pointer error.....
There are six items coming ...
-1
votes
1answer
161 views
Copy a page created in sharepoint designer to another server where there is no designer [closed]
i have a custom list in my sharepoint 2010 site.
Done some customization such as adding parameters and a filter.
Now my problem is that I have to use this customized list in another server where there ...
2
votes
2answers
242 views
prevent Custom ListView Refreshing on scroll. I want to stop refreshing
I am using Custom ListView in My Android App. The Problem is when i am scrolling ListView, it automatically clears entered data from EditText( Edittext as a list_item ) and it ListView refreshed. I ...
2
votes
1answer
133 views
Editing SharePoint2010 List from Out side windows app.
Actually I am trying to add items in a share point List from a windows application. It all goes fine when I added the web reference and the able to get the all the offerings listed for Lists.asmx.
...
2
votes
5answers
145 views
onItemClicklistner(); does'nt work for Custom listView in android
I have a custom listView.xml having a listView as.
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
...
0
votes
0answers
35 views
Have an info pathform from a custom list and when form is opened in the browser it displays quick luanch bar
I have an info path form that has been made through a custom list.
When the form loads in the browser the quick launch bar is displayed on the right hand side, but i do not want the quick launch bar ...
2
votes
0answers
231 views
android horizontal view in a listview using two base adapters
I am a rookie android developer facing some issues in inflating 2 layout in a list view
I want a horizontal row which contain image and textview as a separate layout and then call these two layout in ...
1
vote
3answers
145 views
Custom List Adapter Wont display pictures
Edit: I removed my exception information. With the Help of @Sam I was able to use fix project properties and the application no longer force closes on me. Though, rearranging the layout from image ...
1
vote
1answer
313 views
My getView() Position is repeating In Custom List View?
I am using custom ListView .Its working fine. I am using this ListView for differentiate Read & Unread Messages I pick up message read Id which is 0 for unread message & 1 for read message.
My ...
2
votes
2answers
174 views
Handling customized listview in android?
I am developing an app where I am using customized listview. First i will go with code and i will ask my question(at bottom).
Main.java (using adapter class to set data to listview)
Myadapter ...
0
votes
0answers
141 views
custom page layout without code behind for custom list
I want to create a custom page layout without code behind (only .aspx page but no .aspx.cs) and want to get the fields from a custom list. For example we can do the same in different way:
Create a ...
0
votes
2answers
205 views
How to display two images in each row of Custom listView in android
I want two display two Images and and two Text Views in each row of the List View..
I hv tried this but.. images are not displayed..
this is code of Customized list view source.. custom_listview.xml
...
-1
votes
1answer
160 views
Eclipse ClassCastException error [closed]
I've been encountering a ClassCastException error when trying a customized list as an item of a simple list. Here is the log:
10-29 16:45:39.654: D/dalvikvm(615): GC_FOR_ALLOC freed 70K, 4% free ...
0
votes
2answers
255 views
To implement the checkbox in custom listview
I have written the code to show the list of contents from the database and also able to click on the perticular item and to get the name of the item which was clicked.But I want to implement the ...
0
votes
1answer
59 views
How to add days into [Today] SP 2010?
How to add day in a customlist column with value 3 into another customlist column with [Today] in SharePoint 2010?
Example
Customlist DayExp
ExpireDay 3 ... /I don't want to set the default ...
0
votes
2answers
175 views
How to load Images in BaseAdapter from JSON in Android
I have created a custom list containing TextView, ImageView and Button. Now I am trying to display Images from the JSON url but when I run my code I receive a NullPointerException. I don't know why I ...
-1
votes
1answer
840 views
How to implement AddTextChangedListener on a Custom ListView (BaseAdapter)
In my application I have created a custom listview containing textview, imageview and button and i am able to sucessfully load the json data in that list. Now I want to implement a textwatcher so that ...
0
votes
1answer
206 views
Cannot display image on listview using simple cursor adapter
I had populated a listview using simplecursoradapter. However, I want to add images, wherein if the answer is correct it should display check on the right and if null or incorrect it should display an ...
1
vote
1answer
142 views
What is the need for creating a custom adapter class?
I have created a simple list consisting an ImageView and a TextView without using custom adapter class. I poked around the internet and found that most of the custom lists are created using a seperate ...
1
vote
1answer
93 views
Remove default ListField from KeywordFilterField in Blackberry
I am beginner of the Black berry development in that how to more customize the search result rather the use into my textbox.
I want to implement the dynamic search funtionality in my Blackberry ...
0
votes
1answer
29 views
android: cannot access method of custom list
I got the following problem:
I made a custom list CustomList which extends ArrayList and added a new method to it:
public class CustomList extends ArrayList<CustomObj> {
public CustomObj ...
1
vote
1answer
326 views
Powershell to perform SharePoint list operations
I have two identincal SharePoint 2007 lists.
Can I use powershell to do the following:
Copy the first list into the second with all it's item version history.
Remove all version history from the ...
-2
votes
2answers
631 views
Cannot cast from source to destination Type
im using a class called PriorityQueue and like the name says it should compare elements and ordain them this is the Comparer class inside priority Queue
private class DefaultComparer : IComparer
...
0
votes
1answer
69 views
The Seprator line is fill parent..i want to fit to the golden border…How can i do?
In this image the golden seprator line is not fit to the screen..i want this line to be fit to the screen...i used the fill_parent..but this gives me this kind of layout...
This is my custom xml ...
0
votes
1answer
717 views
Sharepoint 2010 list schema deployment
I have create a list schema definition and list instance in VS2010. I have a feature that deploys both list definition and instance, plus a feature stappler which actives the new feature for each new ...
0
votes
1answer
534 views
Can we set custom permission of a list using features in sharepoint 2010?
I am working on SharePoint 2010 . Creating features to automate the custom list creation. I am assigned a task to automatically set the custom permission of each list using features programatically. I ...
0
votes
1answer
311 views
how to get custom listview with searchbox is clicked?
I have three lists, which contains "root, top and down".
but when I filter the list with "top", and then I click on the list, which appears is the "root". how can I make it a clickable list according ...








