Макет, который я использовал, и результат дан. Я хочу, чтобы изображение профиля перекрывало кнопку 3+. Как я могу изменить расположение?
<RelativeLayout
android:id="@+id/profile_layout"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<de.hdodenhof.circleimageview.CircleImageView
android:id="@+id/author_profile_image"
android:layout_width="40dp"
android:layout_height="40dp"
android:layout_centerVertical="true"
android:layout_marginLeft="16dp"
android:src="@drawable/ic_account_circle">
</de.hdodenhof.circleimageview.CircleImageView>
<Button
android:id="@+id/btn_more_author"
android:visibility="visible"
android:layout_width="40dp"
android:layout_height="38dp"
android:layout_centerVertical="true"
android:layout_marginLeft="-10dp"
android:layout_toRightOf="@+id/author_profile_image"
android:background="@drawable/round_button"
android:text="3+"
android:textColor="#fff"
android:textStyle="bold" />
</RelativeLayout>