我想在我的recyclerView
左侧有一个正方形的ImageView。
我们如何实现这一目标?我希望找到一个没有硬编码的解决方案。
<RelativeLayout
android:id="@+id/containerView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginLeft="12dp"
android:layout_marginTop="12dp"
android:layout_marginRight="12dp"
android:layout_marginBottom="12dp"
android:padding="0dp">
<ImageView
android:id="@+id/profileImageView"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_alignParentLeft="true"/>
<TextView
android:id="@+id/nameTextView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="12dp"
android:layout_toRightOf="@+id/profileImageView"
android:layout_above="@+id/messageTextView"
android:gravity="center_vertical"
android:includeFontPadding="false"
android:singleLine="true"
android:textAllCaps="false"
android:textAlignment="textStart"
android:text="Username"/>
<TextView
android:id="@+id/messageTextView"
android:layout_width="match_parent"
android:layout_marginLeft="12dp"
android:layout_alignParentBottom="true"
android:layout_toRightOf="@+id/rankProfileImageView"/>
</RelativeLayout>>