Posts by caezar • 481 points
25 posts
-
2
votes1
answer693
viewsQ: Is it possible to recover the selected values from a multiselect (not active X) list box?
It is possible to recover the selected values from a list box (Form control) with the option of multiple selection, by formula or Vba?…
-
2
votes1
answer960
viewsQ: Is it possible to use a "SOMARPRODUTO" to calculate values in various spreadsheets?
I have some tables with store names and I would like to know the sums of values of these stores that are in different spreadsheets. Is it possible to do this using the "SOMARPRODUTO" or "SOMASE"? I…
-
1
votes1
answer246
viewsQ: How to select smallest record by field
How can I present the smallest factor by ID_ACORDO? SELECT LIGACOES.ID ,ACORDO.ID_ACORDO ,ACORDO.DATA as 'DATA_ACORDO' ,LIGACOES.time_of_contact AS 'DATA_LIGACAO'…
-
2
votes1
answer507
viewsQ: How to import mysql data with VBA without defacing text
I have a macro that connects to mysql and executes a query that is in text file and adds the records in an excel spreadsheet. It turns out that the text is disfigured. Example: Correct: CALL QTDE…
-
1
votes1
answer1824
viewsQ: How to change data from a chart dynamically (DESLOC + RANGE NAME)?
I’m trying to create a dynamic graph where a combo changes the chart type. I actually created a name where I added an offset formula that not only changes the range height but also varies the…
-
3
votes1
answer795
viewsQ: Is it possible to rename a folder with files inside using VBA (Outlook)?
I have a simple process where a text file arrives by email and I must save it at a certain location within a folder whose name is a date that is within this file. With this in mind I developed the…
-
0
votes1
answer198
viewsA: How can I switch tabs using a spinner?
To solve this problem I set the Viewpager setCurrentItem in the spinner system onIntemSelected method. In this way: Spinner sp = (Spinner) findViewById(R.id.spinner_nav); List<String>…
-
5
votes1
answer335
viewsQ: Slide item to increment Textview
Is there any component that when sliding an item of a ListView, it increases a TextView in the item itself? As in the image below: Sliding to the right, increments according to the value that…
-
0
votes1
answer198
viewsQ: How can I switch tabs using a spinner?
I would like to implement the tabs change by a spinner I added inside Toolbar. public class MainActivity extends FragmentActivity { /** * The {@link android.support.v4.view.PagerAdapter} that will…
-
0
votes1
answer94
viewsQ: How to add Toolbar and Viewpager in the same Layout
When adding both components in layout XML I get the following error in the Viewpager starting line: error: Error parsing XML: unbound prefix Layout: <?xml version="1.0" encoding="utf-8"?>…
android-layoutasked caezar 481 -
3
votes2
answers5037
viewsQ: Sort a list of objects by more than one attribute
How to sort a list of objects by more than one attribute? First is made the ordering of the score, then as tiebreaker criteria we have the winning number and then the goal balance. Something like…
-
0
votes1
answer324
viewsA: Fragment with TABS inside another fragment with Appcompat
I solved the problem with this adaptation: public class FragListaJogos extends Fragment{ private SectionsPagerAdapter mSectionsPagerAdapter; private ViewPager mViewPager; private View view; private…
-
0
votes1
answer324
viewsQ: Fragment with TABS inside another fragment with Appcompat
It is possible to add a fragment with TABS (HORIZONTAL VIEW SWIPING WITH TABS) inside another fragmneto?…
-
0
votes0
answers66
viewsQ: Slide Menu using Sherlock without Actionbardrawertoggle which is obsolete
I have seen many examples to implement the slide menu using the famous Sherlockactionbar, but they all use the obsolete Actionbardrawertoggle. Someone has an example of implementing a slide menu…
-
5
votes1
answer996
viewsQ: Including in APK an Sqlite database
Is it possible to include the application database in the APK installation? I already have all the necessary records for the operation of the application and would like to include it during the…
-
0
votes1
answer65
viewsA: As popular listiview of multiple Tabs with information coming from a BD Sqlite
In short I created an Asynctask that is called in onCreate, in it I import all the games. I created a class called round that gets a list of games. This way importing all the games at once, I won’t…
-
0
votes1
answer65
viewsQ: As popular listiview of multiple Tabs with information coming from a BD Sqlite
I am working on an app that presents all the games of the Brazilian championship. I want each tab to show the games of a round, example: tab1 (wheelset 1) tab38 (wheel 38) For this purpose I created…
-
1
votes1
answer2360
viewsQ: Sqlite relationship between tables
About relationship between tables: I tried to run the following code and Sqlite returns me the following error: table "Games" has more than one Primary key --…
-
1
votes1
answer120
viewsA: Error with Picasso library
I found the problem! It was with class import. It was importing the library from another project!
-
0
votes1
answer120
viewsQ: Error with Picasso library
I have a problem with my code and cannot find it. The images do not appear using the Picasso library. I can’t see the debug problem because during the process this message appears: Source not found…
-
3
votes1
answer92
viewsQ: Manipulating buttons on list items
Guys I’m having a problem on my list. In my list is equal to the image below: Arrows should consider the number of goals of the corresponding textView, but this is not the case. Regardless of the…
-
4
votes1
answer104
viewsQ: How to keep the same layout for different versions?
How can I keep the layout from my apps to the different versions of Android? Example: A EditText has layout in version 2.1 and another in version 4.x, how to keep the layout version 4 in previous…
-
0
votes1
answer124
viewsA: Sending object to Android client, what to use?
I deepened more in the suggestions given and I believe that the best is the union of Webservice, SOAP and JASON or XML. Thank you all for your strength!
-
-1
votes1
answer124
viewsQ: Sending object to Android client, what to use?
I am developing an Android app that is a table of a football championship with the results of the games presented in a list. As the games happen I register in a database and send the result to…
-
2
votes1
answer489
viewsQ: Circular imageview
How to build a ImageView round as in the example below?