Skip to content

Tag: java

android on Text Change Listener

I have a situation, where there are two fields. field1 and field2. All I want to do is empty field2 when field1 is changed and vice versa. So at the end only one field has content on it. It works fine if I attach addTextChangedListener to field1 only, but when I do it for both fields the app crashes. Obviousl…

Chaining static methods

This might not have a solution, or I might have not been able to find one, but here it is: !! Note: the code below is incorrect, I know. I just want to show what exactly I would like to accomplish. I would like to do something on the lines: … in order to do the below somewhere in another

Draw a line with curved edges in Android

I am using canvas.drawLine to draw some line in android but the lines are too sharp but i need a curved edges Here the 1 is what i have and 2 is what i want to achieve, means a line with curved edges rather than straight edges How can I achieve that ?? EDIT 2: I am trying to use

Override transactional method

I have method M with @Transactional in service A. I have service B extends A with overrided method M. Will be overrided method M still transactional? Or I should add there @Transactional? Answer What you are actually asking : is the @Transactional annotation on the method inherited. Short answer : no. Annotat…

Spring HttpInputMessage encoding

Is there any way to get the content encoding from the [HttpInputMessage][1] into a HttpMessageConverter? I browsed the documentation but I cannot find any relevant info. Answer I’m not sure I understand exactly what you want. If by encoding you mean the Content-Encoding or Content-Type header, then all …