Posts by Vale • 2,919 points
153 posts
-
0
votes1
answer56
viewsQ: How to create a template on Android?
Regarding that answer of this question, I asked the author the question If he chose to store in an Object Array, this question had an image what could be done. his answer you can create a template…
-
2
votes0
answers500
viewsQ: In Android Studio how to view what comes off the screen?
I’m using text and an image with that they comes off the screen but with ScrollView sailing is possible but in Android Studio on the small screen is the phone to follow the design what comes out…
-
2
votes1
answer1725
viewsQ: How to test an app created on Unity for Android in a logcat emulator like in Android Studio?
In the unity developing for Android, it does not test exactly as in an emulator like Android Studio. I know you can generate one apk and test on the physical device, but I wanted to test on an…
-
7
votes1
answer183
viewsQ: How to move an enlarged image with finger in Imageview?
Based in that answer to the question when zooming in, how to move the image with your finger to see the other part of the image.…
-
1
votes1
answer1531
viewsQ: How to use more than one extends?
When I create the project it comes like this public class MainActivity extends AppCompatActivity{ would like to use more of a extends how to do ? import android.support.v7.app.AppCompatActivity;…
-
0
votes0
answers398
viewsQ: Imageview on Android is it possible to zoom in?
In the ImageView can zoom in on the image within the ImageView definite. <ImageView android:id="@+id/imageView1" android:layout_width="fill_parent" android:layout_height="fill_parent"…
-
0
votes2
answers241
viewsQ: Playerprefs in Unity with Boolean variable?
The PlayerPrefs Has something similar or it itself can use boolean variable. example: PlayerPrefs.GetInt() // e para inteiros
-
0
votes1
answer2062
viewsQ: Error in Android Studio what to do?
Seems this mistake to me Error:(2) Error retrieving parent for item: No resource found that matches the given name 'android:TextAppearance.Material.Widget.Button.Inverse'. Error:(2) Error retrieving…
-
4
votes2
answers3630
viewsQ: How to center a Textview?
How to center horizontal text on TextView that is to center on the top and bottom line. <TextView android:id="@+id/txt" android:layout_width="match_parent" android:layout_height="match_parent"…
-
1
votes1
answer818
views -
1
votes0
answers296
viewsQ: Isn’t Admob running at Unity?
I imported the plugin as per admob’s website , plugin link I used the following code for testing using System; using UnityEngine; using GoogleMobileAds; using GoogleMobileAds.Api; public class…
-
1
votes1
answer144
viewsQ: Is it a mistake in Unity or does it not interfere with the program?
This error appeared in Unity would like to know what is error and how to solve it There are inconsistent line endings in the 'Assets/Scripts/teste.Cs' script. Some are Mac OS X (UNIX) and some are…
-
0
votes1
answer488
viewsQ: How to implement a github file in Android Studio?
I would like to implement that file in the Android Studio just go in the import or have to import a specific file.…
-
0
votes2
answers1861
viewsQ: How to place a button that performs a Alertdialog.Builder action?
I have this method where it displays a message. public void mensagenExebir(String titulo, String texto){ AlertDialog.Builder mensagem = new AlertDialog.Builder(Activity.this);…
-
0
votes1
answer1558
viewsQ: BUG in Android Studio
This error appeared out of nowhere and now I can’t emulate the app on mobile as in the simulator follows the error. Error:C: Users Rodolfo.Gradle caches 2.8 scripts…
android-studioasked Vale 2,919 -
0
votes1
answer64
viewsQ: Ad error adbuddiz Android
At the time you call the ad displays this error and does not show the ad E/AdBuddiz: Can't show Ad: NETWORK_TOO_SLOW. Current network is too slow. it displayed a few times and now appears this…
-
0
votes1
answer58
viewsQ: How to create a variable that stores a value even if you restart the application or change scenes on Android?
How to create a variable that stores a value even if it restarts or changes application scene, I don’t know if it would be a database or if there is something simple
-
0
votes1
answer673
views -
3
votes1
answer192
viewsQ: Vector start with element greater than 0 (zero)?
Usually a vetor starts from the element 0, and so on until you get to the size of which it was declared or assigned, example: string[] v = {1, 2 , 3}; // equivalente á: v[0] = 1; v[1] = 2; v[2] = 3;…
-
-1
votes1
answer60
viewsQ: How do I access the text size (Texview) and compress the text box (Textview) via code?
I’m looking to create a AutoScale TextView, I needed to access the text size and length via code. I’ve been searching the internet I found enough code referring to the theme of the question, as they…
-
4
votes1
answer670
viewsQ: How to make the text fit in the text box on Android?
To set a range for the font size for the text to automatically adjust in the text box Android (TextView) the extent to which it is entering or inserting. There is a configuration to do on Android…
-
0
votes3
answers327
viewsQ: Logo configuration when generating apk in Unity 5
Does anyone know why the logo Unity the apparatus is not vertical follows the image to facilitate understanding I stopped to be in vertical position the rest of the configuration did not change…
-
3
votes2
answers597
views -
9
votes2
answers1880
viewsQ: Unity 3D and Android, how to handle txt file?
How to do in the Unity 3D read a arquivo txt line by line and store in a vector using C#. Well, I managed to manipulate the arquivo .txt, however in Android it doesn’t work. Follow the code I used.…
-
3
votes2
answers10363
viewsQ: What is the command to close or quit the game created in Unity?
I’m learning Unity and would like to know what the command to exit the game, ie close the application and also to know this command as I apply to press the back button of mobile Android execute such…
-
9
votes2
answers3327
viewsQ: How to make a motion system using touch in Unity?
When sliding your finger up screen executes the command and when sliding your finger down executes the command, an example of command would be a move up and a move down with the touch me return a…
-
5
votes1
answer1998
viewsQ: Doubt how to display binary tree by width?
Good to use this method of flaunt need a line there all right, I tried this logic worked until the third level of the tree. bool marcador = true; void buscaLargura(No *raiz) { if(raiz != NULL) { if…
-
4
votes1
answer200
viewsQ: doubt about exiber values and decrypt in the Chained Queue?
How to display the values in the correct row because it displays from last to first. #include <iostream> #include <cstdlib> using namespace std; struct Item { int dado; Item *prox; };…
-
-1
votes1
answer90
viewsA: Problem with file recognition. h
Well I found my mistake debug and release options were unchecked. To check just go in the file tab you created right click and select the boxes…
-
0
votes1
answer90
viewsQ: Problem with file recognition. h
Well I created a arquivo.h and a arquivo.cpp, of arquivo.cpp by including the #include "arquivo.h" automatically recognizes, already in my main.cpp does not recognize there I cannot use the data of…
-
18
votes3
answers18194
viewsQ: What purpose of unsigned in C++
What is the purpose of unsigned in the C++? Example: unsigned char ch2;
-
11
votes2
answers1560
viewsQ: How to create an aquivo. h?
What good is a arquivo.h and what improvement it brings to the program in C++?
-
-2
votes1
answer226
viewsQ: How to solve several errors of this code?
I typed this program from the book that addresses classes and gave error. How to solve? #include <iostream> using namespace std; class Efetua_calculo{ private: double total; double soma;…
-
3
votes1
answer1489
viewsQ: What command to delete partial in c++?
Well, how do you know system("cls") erases all, would like command to delete partially.
-
6
votes6
answers19681
viewsA: How to fix this error "Error cannot resolve Symbol R" in Android Studio
thus solved my problem in the Android Studio was file and then in Project Structure Then go on app, in the field Properties in Compile Sdk Version and Build Tools Version select the latest version.…
-
9
votes6
answers19681
viewsQ: How to fix this error "Error cannot resolve Symbol R" in Android Studio
I imported a project made on Eclipse to the Android Studio and errors appeared in the code regarding the R with the following message cannot resolve Symbol R How to correct this error?…
-
1
votes1
answer555
viewsA: Visual effect when clicking the button disappears when I assign a background
In that case you need to create a selector for your button, a new style, for example. only in your drawable folder right click, go in new select xml the name you choose in this case…
-
9
votes1
answer610
viewsQ: How to set up mopub ads?
When you install the plugin mopub in the Android Studio you choose the type of banner ad and it gives you all the code to go pasting in the right place. You perform works right appears in the test…
-
1
votes1
answer97
viewsQ: How to program to open a specific file type?
I would like to learn how to mess with files, good for example programming in java and work with file CBR, those files HQ or Comic book For this there are libraries specific to each file or class…
-
0
votes0
answers44
views -
0
votes1
answer88
viewsQ: How to implement this class in a Textview , so that it works correctly?
I found this code for "self-sealing" on the link https://stackoverflow.com/questions/5033012/auto-scale-textview-text-to-fit-within-bounds and would like to know how to implement in a TextView. ** *…
-
4
votes1
answer3125
viewsQ: How to set up UTF-8 in Android Studio?
This error appeared in Android Studio. Is there any setup to fix? Error:(85, 69) error: unmappable Character for encoding UTF-8
-
1
votes0
answers53
viewsQ: Help in installing the plugin to Fabric mopub
I downloaded the plugin from the site, installed it on Android Studio, but makes this mistake here:…
-
3
votes2
answers993
viewsQ: What alternative website to Admob for the Android app?
Good search alternative site Admob to place advertising in apps Android, I’d like you to nominate the best.
-
1
votes1
answer123
viewsQ: How do traffic control on Admob’s Android app?
My account has been blocked by invalid click, how to identify this ip and do something resolve problem.
-
5
votes4
answers12786
viewsQ: How to create a java class?
I would like to know how to create a class in the java, how to use this class in the main program and how is the variable created in this class.
-
2
votes2
answers4054
viewsA: Error message (Error:Execution failed for task ':app:processDebugManifest')
In his build.gradle(Module:app) change the value minSdkVersion to 9 and see if it resolves. apply plugin: 'com.android.application' android { compileSdkVersion 22 buildToolsVersion "22.0.1"…
-
4
votes3
answers18584
viewsQ: How to use gets() in C++?
How to use gets() in the C++, when asked to type it and store it in a type variable char?
-
5
votes1
answer3306
viewsQ: How to create a new library in C++
I would like to know how to create a new library in C++. if one can give an example, it can be a widespread example.
-
1
votes1
answer82
viewsQ: Instead of maps, how to use a struct vector for the problem in C++?
First I have a struct strcuct Ficha{ int resgistro; float pontuacao; }Fichas[100]; is the following I will read random mode data, but a data always in the list will start with the number that is not…