0
私は各画像ビューの下にテキストを配置する必要があるレイアウトの重量概念を打ちました。重量の概念では多くの方法を試しましたが、textViewはどこかに行っています。私のxmlをここに付け加えました。各ImageViewの下のTextViewを適用するには、事前どのように各画像ビューにTextviewを配置するのですか?
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/topBar"
style="@style/IconBar"
android:layout_width="match_parent"
android:layout_height="90dp"
android:baselineAligned="true"
android:orientation="horizontal"
android:weightSum="4" >
<ImageButton
android:id="@+id/home"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_weight="0.8"
android:background="@android:color/transparent"
android:src="@drawable/glow"
android:visibility="gone"/>
<RelativeLayout
android:id="@+id/relative"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<ImageView
android:id="@+id/imageLabel"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:layout_weight="0.8"
android:src="@drawable/glow"/>
<TextView
android:id="@+id/textLabel"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/imageLabel"
android:layout_centerInParent="true"
android:singleLine="true"
android:text="Israel News"
android:textSize="18sp"
android:textStyle="bold"/>
</RelativeLayout>
<ImageButton
android:id="@+id/email"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_weight="0.8"
android:background="@android:color/transparent"
android:src="@drawable/glow" />
<ImageButton
android:id="@+id/place"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_weight="0.8"
android:background="@android:color/transparent"
android:src="@drawable/glow" />
<ImageButton
android:id="@+id/account"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_weight="0.8"
android:background="@android:color/transparent"
android:src="@drawable/glow" />
<ImageButton
android:id="@+id/accounts"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_weight="0.8"
android:background="@android:color/transparent"
android:src="@drawable/glow" />
</LinearLayout>
? – akash93
@ akash93Updated私のコード – HsRaja
'Layout_weight'は' LinearLayout'の直接の子に割り当てられる必要があります。この場合は 'RelativeLayout' – akash93