0
votes
1answer
21 views

Crashing when trying to add buttons to a layout dynamically

I've been searching how to add buttons dynamically and keep finding the same or very similar solution but it just refuses to work with me. Whenever I run the app it crashes instantly and I am unsure ...
5
votes
3answers
91 views
+100

Unlimited/Dynamic ViewPager in both directions

There is one use-case of ViewPager I've never seen pretty implemented. ViewPager is more or less static structure. It's not so hard to add Pages to the right side (appending to Model and displaying ...
0
votes
3answers
35 views

How to get a value from edittext dynamically?

I have tried searching unsucessfully. I need to have an edittext always checking if its value is changing and if it contains something do something. I have looked at a OnTouch listener but it is just ...
0
votes
0answers
17 views

“Dynamic” parsing engine in Android app that I can update easily and quickly

I have written an Android app that people use to view a private forum (for a game). The forum seems to be handwritten or something and does not support Tapatalk or similar, and it is a pain to browse ...
0
votes
1answer
23 views

How to receive a dynamic variable from a website (android)

I'm not exactly sure how to state this but here's the basic idea of what I'm trying to do: I'm making a radio player application in Android Java. The function I'm looking at including is a dynamic ...
0
votes
2answers
58 views

Dynamically add multiple views and classes to the current view

I am interested in populating a screen/activity with a user defined number of same views. Each view will have the exact same layout: couple TextViews and few Buttons. The thing is that each button ...
0
votes
0answers
23 views

Remove item from custom listview with dynamic row layout by using checkbox and button

I have a Custom ListView which contains four different layout where the number of rows is varied on every listitem. What is common with these four layouts beside the three textviews is that they have ...
0
votes
1answer
30 views

ImageView be a square with dynamic width?

I have a GridView with ImageViews inside. I have 3 of them for each row. I can set correctly the width with WRAP_CONTENT and scaleType = CENTER_CROP, but I don't know how to set the ImageView's size ...
-3
votes
0answers
35 views

Add a form when clicking on a button

I'm new to Android and I'm trying to create a registration form, the user should be able to add multiple users. I tried some solutions on adding a view dynamically, but they didn't work for me. I ...
1
vote
1answer
37 views

Create dyanamic List Row layout Programatically

Thanks for reading my query. We are looking for a template based solution to list row where each list row might have different-2 field and their alignment which will be driven by server in the form ...
0
votes
1answer
21 views

What context should I use when sending an Intent to an activity in a separate DEX file?

I have an android activity located in a separate dex file that I want to launch from my android app. I get an exception after starting the intent. Didn't find class ...
0
votes
1answer
45 views

Android fragment layout finished inflating

I want to add some graphics to a layout programmatically. I want to position the graphics dynamically based on the position of other graphical elements in the xml layout file. The positions of the ...
0
votes
1answer
42 views

Reading values of dynamically generated spinners - how to do this?

In my layout there is a number of spinners generated and added programmatically this way: for (int i = 0; i < spinnerCount; i++) { spinner = new Spinner(this); ...
0
votes
1answer
39 views

Dynamically animate a layout

I have to implement a (child) layout translate animation programmatically because the distance to translate is determined at runtime. I have set the following translate animation ...
1
vote
2answers
66 views

How to save multiple values to a single variable through an activity.

I am creating an application in which I scan a number of bar codes and keep extracting their values and clubbing them in a single place. As simple as this sounds I have been unable to create either an ...
-1
votes
1answer
26 views

I know Button ID integer value.Create new button object with ID

For Example: for(int i=0;i<15;i++) { final Button btn = new Button(oyun.this); btn.setId(i); layout.addView(btn); } the dynamic button add to layout after for(int ...
0
votes
1answer
48 views

How can i store my buttons which are designed programatically?

I have a listView and in that listView every list row has a button, so when i click on the button a new button will be created in the main layout. So as many clicks i get those many buttons are ...
0
votes
4answers
54 views

Dynamically populate a button value android

I have seen lots of example to which one use a if condition or a case statement to programmatically change the conditions of elements...yadda yadda. I need to change the value of a button based on ...
0
votes
1answer
58 views

Android Get values of multiple Checkbox's

Hi i have one of these for each day of the week mondayRadioButton.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { ...
0
votes
2answers
44 views

Android: Unable to pass correct table row's data to next activity

I'm fairly new to Android programming and have completed my first app except for one issue on passing data from a table row that is selected (onClick). I've researched out here and tried most of the ...
0
votes
3answers
48 views

Why is using TextView to update int value and display it giving me a crash?

Im trying to develop a text adventure for android. Already found a subtle way to change 'pages' without creating new Activity. Now I was trying to include permanent int values on each of my layouts ...
0
votes
1answer
37 views

LinearLayout Horizontal inside LinearLayout Vertical

I am trying to put a linearlayout vertical inside the linear layout programmatically, but it seems that its not working, the buttons doesnt appear, but the text view appear... Here is my code: (this ...
0
votes
1answer
42 views

Adding rows dynamically to a table, where the layout was designed

I was wondering if I can add rows of data dynamically to a table whose layout was already defined...for ex : <TableLayout android:id="@+id/myTableOrders" ...
1
vote
1answer
87 views

How to extract value of the child in expandablelistview with onChildClickListener?

I have an expandable list view which is getting generated dynamically and the child list holds another set of values, I need to set an onChildClickListener on the child list so that a web intent is ...
0
votes
2answers
69 views

Android - Access an object added after the activity has launched

I'm a beginner in Android development and would appreciate your help on this one. I have an android activity that creates a Checkbox and an EditText when the user clicks on a button. The user is free ...
0
votes
0answers
42 views

Change text color dynamically within a CheckedListView in Android

I'm trying to change the text color of items in my CheckedListView based on various states. Basically, I'm trying to simulate sub selection vs a full selection of a text box like in WPF. When I want ...
0
votes
1answer
97 views

Populate spinner with years dynamically in Android?

I have been racking my brain trying to get this to work. I want to dynamically enter in years from 1900 to the current year into a spinner. I don't think that this is possible to do using an XML ...
0
votes
3answers
37 views

Dynamically display imagebuttons in AsyncTask

So I am retrieving images from Parse and dynamically displaying them in a ScrollView LinearLayout, but I can't seem to add a clickListener or add them to the view. Here's what I have: MyTaskParams ...
0
votes
1answer
69 views

Unity and Eclipse: dynamically draw object

I'm implementing an Android application that draws a 3D object on screen (over camera view). The objects are in FBX format, and since it's been several years since the last time I used openGL I ...
0
votes
1answer
30 views

ImageView populating dynamic value

Still new to android. Be gentle. I have read a number of articles about dynamically populating an ImageView. I need to do it in a certain way but I'm struggling with the correct syntax. Ironically, I ...
1
vote
1answer
105 views

Add a dynamic tablelayout in a relativelayout above a existing button

i'm trying to add a tablelayout in a relativelayout, but i'm havind some problems to put this tablelayout above a existing button, i can only but it below it. XML <RelativeLayout ...
1
vote
0answers
138 views

How to add radiogroups to a listview dynamically? (Or an expandable listview)

I want to create a feedback form such that there are radio button options in an expandable list view instead of a sub list, the number of radio buttons and elements in the list is dynamic. I have ...
0
votes
1answer
101 views

starting the activity is taking very long time

After calling the intent it was taking a long time to start the activity and application is a dynamic application. I am connecting to the server and retrieving the information from the server. I want ...
0
votes
1answer
52 views

Can a ListView layout generation dynamic be displyed programatically

i have an activity in which i want to show a ListView like datagrid. the arraylist ITransducer[] is dynamic and i want to use the arraylist to generate the columns of listview. ListView ITransducer1 ...
0
votes
0answers
62 views

Create buttons dynamically in while loop

I want to create some buttons in java for an android app dynamically. I get names with regex and theese names should be the button text. For example there are 5 names so I need 5 buttons. I tried it ...
0
votes
1answer
59 views

Android layout difficulties - dynamic control of parameters and content. Best way to code?

I am attempting to make an 8x8 matrix of coloured squares on a black background in a layout that is limited to portrait only. I need the squares to all be equal in size, and the overall matrix to be ...
0
votes
1answer
104 views

Set GridLayout background colours dynamically Android

I have a GridLayout of 8x8 cells and I want to control each one's background colour dynamically. I have written most of my java code and am confident I can get it to give me an array with 64 colours ...
0
votes
1answer
24 views

Why is my dynamic spinner not populating

I have created a spinner dynamically. It shows up but is empty. It is meant to contain the following string array. <string-array name="task_array"> <item>task 1</item> ...
0
votes
0answers
54 views

Change ArrayList data in ListView

I need to create many alarms, so I need a list view which contains items with a DatePicker, a TimePicker and a Delete Button. I have tried various way but I have not found a solution to this issue: I ...
0
votes
1answer
324 views

How to load dynamic content in PhoneGap?

I am looking to use PhoneGap as my framework for an app that I will be developing for iOS and Android. The client has a CMS that has already been fitted with a web service allowing us to generate a ...
0
votes
2answers
205 views

How can I dynamically create menu items?

I'm building an Android application and I'm trying to build a user management system where users can login, logout, etc. I want to display a login menu item if the user is not logged in and a logout ...
0
votes
0answers
49 views

Unable to load elements of dynamically created spinner

I am creating some dynamics views such as buttons, edit texts and spinners in a table format. First row of the table is static rest rows are dynamically creating. and am getting them properly but the ...
0
votes
1answer
56 views

Android: Added Buttons into Scrollview do not have the right size

In an Activity I have added a horizontal Scrollview. This contains an "Add new Set" button and all previously added Sets as buttons. These Sets a saved in a SQLLite Database. In the beginning of my ...
0
votes
0answers
30 views

Methods for creating a condition-based GUI in Android

I want to create a set of user profiles, where every type of user profile can look different. For example one could contain: Name: Textfield Age: NumericTextField FavoriteColor: ...
1
vote
1answer
127 views

Android - Adding several MapFragments dynamically

For my application I have to achieve something near from a launcher : I have to provide the ability to add, remove, resize and drag n drop dynamically some UI elements (let's call them "widgets", but ...
0
votes
2answers
69 views

How do I repeat an existing xml spinner dynamically

I have an XML file: my_form.xml (abridged to just show relevant views). The spinner is populated by a string array from strings.xml <?xml version="1.0" encoding="utf-8"?> <ScrollView ...
0
votes
1answer
84 views

How to create an adaptive Android app

I want an Android app to be able to look and behave differently depending on what user group a user is in. For example, a user logs in, and the app tells a server which user it is. The information ...
0
votes
1answer
54 views

LinearLayout won't fill the width of the screen

I've been working through a bunch of examples on StackOverflow to create a dynamic layout. I've made some headway but have now stalled on a particular bug. How do I make this code fill the width of ...
1
vote
1answer
132 views

Multiple RadioButton can be selected in a RadioGroup android

I'm adding programatically (obliged as the number of radiogroup and radiobuttons are variables) radiogroups in my activity layout like that : rg = new RadioGroup(this); ...
0
votes
2answers
107 views

Android RadioButton and Button one ClickEvent

I have an application that has different component (radiobutton,checkbox,button vs).And I created dynamically all of them but now there is one problem ; I cant create event to all when they created.I ...

1 2 3 4 5 12