skip to Main Content

Android Studio – Placing Two elements at the left of and at the right of parent relative layout in android xml

i want to two elements at the left side of relative layout and two elements at the right side of the same relative layout in android xml. i tried like below. it doesn't work. My Xml <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools"…

VIEW QUESTION

Android Studio – Class 'Anonymous class derived from Callback' must either be declared abstract or implement abstract method 'onError(Exception)' in 'Callback'

Class 'Anonymous class derived from Callback' must either be declared abstract or implement abstract method 'onError(Exception)' in 'Callback' I am opening an old project. Now how to solve this problem? my code is: Picasso.get().load(p.getImageUrl()).into(iv, new Callback() { @Override public void…

VIEW QUESTION
Back To Top
Search