相対レイアウト内にイメージとテキストビューがあります。画像とテキストビューは画面幅の50%を占めます。どのようにイメージとテキストビューの中央に配置できますか?私は多くの方法を試してみましたし、私は私が間違ってやっているのか分からない...ここで相対イメージレイアウトの中心ImageView
は私のコードです:
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:weightSum="100">
<RelativeLayout
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="50"
android:layout_centerHorizontal="true">
<ImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/textViewEventImage"
android:adjustViewBounds="true" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:background="@color/eventNameBackground"
android:id="@+id/textViewEventName"
android:textColor="@android:color/white"
android:textSize="15sp"/>
</RelativeLayout>
</LinearLayout>
あなたのイメージが画面の中央になりたいでしょう。このコードを試してみてください助けることができますか? –