id tag

1618 questions


1 answers
125 views
0
The role of Buffer in java.io.FileInputStream

int bytesAvailable; FileInputStream fileInputStream = new FileInputStream(new File(somewhere)); bytesAvailable = fileInputStream.available(); int maxBufferSize = 100; int bufferSize = Math.min(bytesAv...


2 answers
31 views
0
Android View Model Error

public class MainActivity extends AppCompatActivity { private EditText mTodoEditText; private TextView mResultTextView; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(s...

2 years ago

1 answers
30 views
0
When using Android ACTION_PICK, EXTRA_ALLOW_MULTIPLE, go to Google Photo without selection window

Intent intent = new Intent(Intent.ACTION_PICK); intent.putExtra(Intent.EXTRA_ALLOW_MULTIPLE, true); intent.setType(image/*); startActivityForResult(intent.createChooser(intent,), PICTURE_REQUEST_CO...

2 years ago

1 answers
133 views
0
Draw Curved Graphs

You want to display a graph on the Android screen.There are many examples of circular and curved lines I can't find a way to draw it in a curved line, so I'm posting a question.The graphview library a...

2 years ago

1 answers
85 views
0
Send multiple image files from Spring boot to Android

You have already saved the file from Android to Server as MultipartHttpServletRequest. I would like to send the image and string from Server to Android again.response: [ { boardIdx: 29, title: Titl...

2 years ago

1 answers
106 views
0
Android Emulator Device File Explorer

You are using an emulator. There is something called Device File Explorer that allows you to upload files to the emulator.What I want is to put the picture in the camera folder of DCIM and check it in...


1 answers
52 views
0
About Android Server Deployment

I am a student who is making a simple app with Android. It is an app that simply sends images and text to the server (Spring-boot) to save them and reloads them if necessary.But what I felt recently w...

2 years ago

2 answers
44 views
0
I have a question for JSON parsing

Below is the URL to get the 1st batch list of the Bithumb candle chart https://api.bithumb.com/public/candlestick/ETH/1m{status:0000,data:[[1582464360000,321000,320900,321000,320900,11.7071],[],[]]}I ...

2 years ago

1 answers
122 views
0
api 23 and below BitmapFactory.decodeResources(getResources(),R.drawable.image); null error

As a result of the test, we received the bitmap image normally in api24 or higherBelow 23 the bitmap will enter null.Is it the difference in version? So how can we solve it?

2 years ago

1 answers
96 views
0
I uploaded a game I made on Google, and it says, "I can't find the URL I requested on the server," is it supposed to be like this?

I'm going crazy because I'm curious, but I don't have a proper place to ask questions, so I'd like to understand that I did something rude. It's nothing but an advertisement for a game I developed by ...

« - 156 - »

© 2024 OneMinuteCode. All rights reserved.