id tag

1618 questions


1 answers
130 views
0
What is the difference between android:onClick in xml and setOnClickListener?

There are two ways to define the onClick button on Android: adding attributes to xml and implementing setOnClick with Java code. What is the difference between these two? What else can I do?

2 years ago

1 answers
74 views
0
Android sqlite int sync error

final public String CREATE_FAVORITE_SONG_TABLE_QUERY = CREATE TABLE + FAVORITE_SONG_TABLE_NAME + ( + ID INTEGER PRIMARY KEY, + favorite_id int(10), + sound_res char(30), + sound_name char(3...


1 answers
80 views
0
How do I load images from the URL when I load images from Android to Image View?

How do I import an image from a specific URL and load it into an image view?

2 years ago

1 answers
117 views
0
How to change API level in Android studio

I'd like to change the minimum SDK version from API12 to API14 in Android Studio. I changed it in the manifest file as shown below<uses-sdk android:minSdkVersion=14 android:targetSdkVersion=18 />...


1 answers
87 views
0
When creating a table on Android sqlite, what should I do when there is no data in the beginning?

When creating a table on Android sqlite, what should I do when there is no data in the beginning?

2 years ago

1 answers
96 views
0
AndroidStudio Question) View Pager does not display Fragments on the screen.

viewpager and using tablayout toolbar swipe activity in the process of implementing a problem. Not the contents on the screen the fragment viewpager. Some worry, and I hope you will tell you you know ...


1 answers
94 views
0
Multilingual support issues for developing apps

If the app is released in one language, it is difficult to attract users of various nationalities.To address this problem, there are apps that support multilingual translation in some play stores or a...

2 years ago

1 answers
109 views
0
Can I make Dialog without a title on Android?

On Android dialog = new Dialog(this);dialog.setContentView(R.layout.my_dialog);I'm going to make a custom dialog like this. It works well except for the title being printed out. Even if you take out t...


1 answers
26 views
0
I want the address I entered on the Naver map to be marked with a marker.

<EditText android:layout_width=match_parent android:layout_height=wrap_content android:hint=Address android:id=@+id/etmapname/> <EditText android:layout_width=match_parent androi...

2 years ago

1 answers
69 views
0
Isn't it possible to use it right away if I add a jar file in Android studio?

As you can see, even though there is a class with the same name on the leftWhen I try to create it in the main activity, the red line pops up and it says it's a symbol that's missingㅠ

2 years ago
« - 96 - »

© 2024 OneMinuteCode. All rights reserved.