In Mesibo Chat android application, I need to customize view of chat list appears at home screen. Need to customize profile image shape and design. Please suggest me on how to customize mesibo ui?
Mesibo api, android:
public class UIManager {
public static void launchStartupActivity(Context context, boolean skipTour) {
Intent intent = new Intent(context, StartUpActivity.class);
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.putExtra(StartUpActivity.SKIPTOUR, skipTour);
context.startActivity(intent);
}
...
}
I need the way how to override chat list design.