Posts by Cléo Sousa • 123 points
13 posts
-
0
votes1
answer116
viewsQ: error: Could not find the Androidmanifest.xml file, using Generation Folder after installing android Annotations
I started getting this error after creating my classes with Android Annotations and running the project in emulator. This is my gradddle Project // Top-level build file where you can add…
android-studioasked Cléo Sousa 123 -
0
votes1
answer63
viewsQ: "Annotations are not allowed here" when using @Click on android studio
I’m starting to use android Annotations now I have the following class @EActivity(R.layout.activity_login) public class Login extends AppCompatActivity { @ViewById(R.id.senha) private EditText…
-
1
votes1
answer153
viewsQ: Creating a positiveButton in a Dialog on Android
I have the following method to create a Dialog in an Android app: public static void alertBuilder(String mensagem, Type tipo, Context contexto){ Dialog dialog = new Dialog(contexto, R.style.alert);…
-
0
votes0
answers139
viewsQ: Calling a jFrame from another class in java click event
I have a Jframe with two buttons, and a second class that has a Jframe with other features... I wanted to make the second window open by clicking on one of the buttons in the first window, but I…
-
1
votes1
answer75
viewsQ: showing only part of the screen when the android keyboard is active
I have the following screen on android and would like that when the user clicked on one of editText, only the 3 fields (name, date of birth and phone) were shown at the top of the screen (above the…
-
2
votes1
answer320
viewsA: how to show video loop in videoview in android studio
If the video is set inside Activity, the following code snippet works: mVideoView.setOnPreparedListener(new MediaPlayer.OnPreparedListener() { @Override public void onPrepared(MediaPlayer mp) {…
-
2
votes1
answer320
viewsQ: how to show video loop in videoview in android studio
I have a video view on my android app and the background video is set that way String uri = "android.resource://" + getPackageName() + "/" + R.raw.oceans; VideoView mVideoView =…
-
2
votes1
answer158
viewsQ: creating a javascript tooltip for an html with Thymeleaf
I have the following div which shows the date of a message within a table: <div class="data" th:text="${aviso.data}"></div> I need to put a tooltip that shows the date as well when I…
-
0
votes1
answer44
viewsA: Filter error in different password fields in the same view
The error is that all three password fields were calling the same Validation. In this case, I need to create three different templates, one for Current Password, one for New Password and one for…
asp.net-mvcanswered Cléo Sousa 123 -
0
votes1
answer44
viewsQ: Filter error in different password fields in the same view
I have a VIEW called Change Password and in it I have a Current Password field, a New password field and a New Password Confirmation field. The three fields pass through the same control filter for…
asp.net-mvcasked Cléo Sousa 123 -
0
votes1
answer151
viewsQ: Chained list sorted with errors in add
I have the following sorted chained list, but am getting errors in my first method (add). The error message appears in all 3 interactions where I compare the values of the nodes with the operator…
javaasked Cléo Sousa 123 -
1
votes1
answer271
viewsQ: Double chained list with remove method that does not work
I have this algorithm for a double-chained list, but I get an error in the last interaction on both methods of removing. Any idea what might be wrong with my methods? Main class public class…
javaasked Cléo Sousa 123 -
1
votes1
answer771
viewsQ: Help with simply chained java list
I have a package with the codes below to implement a Simply Chained List. Apparently everything is correct in the classes, but when I run my main I get back what I believe to be the memory reference…
javaasked Cléo Sousa 123