d tag

2228 questions


1 answers
74 views
0
How do I erase elements while writing std::list?

for (std::list<item*>::iterator i=items.begin();i!=items.end();i++){ bool isActive = (*i)->update(); //if (!isActive) // // items.remove(*i); //else other_code_involving(*i);}items.remove_...

2 years ago

1 answers
76 views
0
Is there a way to add or change the theme of the Android studio?

Android Studio, Windows 7 64-bit If you turn on the Android studio, you can code on the white screen. I want this background to be black or something else I don't know how to change it.


1 answers
76 views
0
Can't I change the position of the chart description?

I'm making a graph with about 20 dotsIt's annoying because the legend keeps coming into the graph.On a line that does not change the size of the axis or graph,I want to put the legend outside the grap...

2 years ago

1 answers
144 views
0
Can't you override the back button on Android and handle it like a home button?

When I press the Back button on Android, I want to stop the application and go to the home screen How shall I do it?

2 years ago

1 answers
92 views
0
I'd like to select an image from the gallery app installed on Android as a code.

I want to open the gallery app's photo installed on Android from my app What can I do when I have the URI of the picture?


1 answers
73 views
0
Can I include subfolders in the Android layout folder?

Until now, storing all layout files in the layout folder has been easy to manage a small project.I feel the need for subfolders when the project is heavy and growing. For example, layout-- -- layout_p...

2 years ago

1 answers
152 views
0
How do I get a list of applications installed on the device, select them, and run them?

I asked a similar question this week. I still don't understand. How do you get all the applications installed on your device?Can I get it? And how do you do what you choose?Intent intent = new Intent(...

2 years ago

1 answers
115 views
0
How to border ImageView on Android

I want to put the border in ImageView and color it, what can I do?

2 years ago

1 answers
144 views
0
How to search for strings in a project in an Android studio

It might be a stupid question, but is there a way to search for the string I'm looking for throughout the project other than Ctrl+F? For example, I want to find the string .getUuid(), but Edit->Fin...


1 answers
104 views
0
How do I delete modules from Android Studio?

How do I delete modules from Android Studio? I can't see the delete button even if I right-click on the module.

2 years ago
« - 98 - »

© 2024 OneMinuteCode. All rights reserved.