d tag

2228 questions


1 answers
102 views
0
Is there a permission for Internet access in the Android app?

An error message came out while running the app. java.net.SocketException: Permission denied (maybe missing INTERNET permission)


1 answers
80 views
0
What is the difference between Padding and Margin in the view?

What is the difference between Padding and Margin in the view?


1 answers
79 views
0
Can't you not turn it off when you click the button in the dialog?

I made a dialog with EditText. There are Yes and No buttons. For example, if you click the Yes button, the input is checked and the dialog is turned off. But even if the input is wrong, the dialog is ...


1 answers
134 views
0
When you make buttons on Android. Is there a button to write text and images together?

I'm trying to dynamically change the image of the button image. There's text above the image.At this time, if you use ImageButton, you can't add text, and if you use Button, android:drawableBottom in ...

2 years ago

1 answers
139 views
0
How to change int to hex

int_value = -13516;There's a value like this, but I want to change it to a hexadecimal value.hex_value = Integer.toHexString(int_value);I did it like above, but the value comes out ffffcb34But what I ...

2 years ago

1 answers
45 views
0
What exactly are minSdkVersion and targetSdkVersion?

I'm developing an Android app. I wonder the difference between minSdkVersion and targetSdkVersion.

2 years ago

1 answers
108 views
0
I don't want to make the wallpaper blurry when I sing the dialog.

<LinearLayout android:id=@+id/LinearLayout01 android:layout_width=fill_parent android:layout_height=fill_parent android:orientation=vertical xmlns:android=http://schemas.android.com/apk/res/andr...

2 years ago

1 answers
96 views
0
Send Object from Activity to Another Activity

I want to send the object of the customer class to another activity. So I want to show you in other activitiesWhat should I do?public class Customer { private String firstName, lastName, Address; int ...


1 answers
84 views
0
Where can I see the C/C++ standard?

Looking at other answers, I saw a lot of things like standard or standardWhere can I see standard documents?I wish I could see it on the internet!I searched Cstandard on Google, and only the community...

2 years ago

1 answers
151 views
0
I'm trying to restart my activities on Android

public static void restartActivity(Activity act){ Intent intent=new Intent(); intent.setClass(act, act.getClass()); act.startActivity(intent); act.finish();}This is the restart method that I creat...

« - 94 - »

© 2024 OneMinuteCode. All rights reserved.