0
今、私は、ヘッダーに水平になっている別の画像右上を追加しようとしています、私は特定のフォーマットにテキストや画像を表示していますし、それが今Androidのレイアウトイメージ右上
次のようになりますテキスト私はちょうど、他のテキストや画像
をめちゃくちゃにすることなく、ヘッダに垂直右隅にそのイメージを取得するように見えることはできません。こののようなので、
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#000000"
android:orientation="vertical"
>
<TextView
android:id="@+id/header"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="text"
android:textColor="#FFFFFF"
android:paddingLeft="5dp"
android:paddingRight="5dp"
android:paddingBottom="5dp"
android:paddingTop="5dp"
android:textSize="30sp"
android:textStyle="bold"
/>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/imageFavourites"
android:layout_gravity="right" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:background="#C3C3C3"
android:orientation="horizontal">
<ImageView
android:id="@+id/imageView1"
android:layout_width="40dp"
android:layout_height="40dp"
android:layout_gravity="center_horizontal"
android:layout_marginBottom="5dp"
android:layout_marginEnd="4dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="4dp"
android:layout_marginStart="10dp"
android:layout_marginTop="5dp"
android:adjustViewBounds="true"
android:scaleType="fitXY"
android:src="@drawable/ic_launcher"/>
<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="5dp"
android:text="text"
android:layout_marginEnd="4dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="4dp"
android:layout_marginStart="10dp"
android:layout_marginTop="5dp"
android:textColor="@color/colorWhite"
android:textSize="18sp" />
<ImageView
android:id="@+id/imageView2"
android:layout_width="40dp"
android:layout_height="40dp"
android:layout_gravity="center_horizontal"
android:layout_marginBottom="5dp"
android:layout_marginLeft="4dp"
android:layout_marginRight="4dp"
android:layout_marginStart="4dp"
android:layout_marginTop="5dp"
android:adjustViewBounds="true"
android:gravity="center"
android:scaleType="fitXY"
android:src="@drawable/ic_launcher"/>
<TextView
android:id="@+id/textView3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="text"
android:layout_marginBottom="5dp"
android:layout_marginLeft="4dp"
android:layout_marginRight="4dp"
android:layout_marginStart="4dp"
android:layout_marginTop="5dp"
android:textColor="@color/colorWhite"
android:textSize="18sp" />
<ImageView
android:id="@+id/imageView3"
android:layout_width="40dp"
android:layout_height="40dp"
android:layout_gravity="center_horizontal"
android:layout_marginBottom="5dp"
android:layout_marginLeft="4dp"
android:layout_marginRight="4dp"
android:layout_marginStart="4dp"
android:layout_marginTop="5dp"
android:src="@drawable/ic_launcher"/>
<TextView
android:id="@+id/textView4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="text"
android:layout_marginBottom="5dp"
android:layout_marginLeft="4dp"
android:layout_marginRight="4dp"
android:layout_marginStart="4dp"
android:layout_marginTop="5dp"
android:textColor="@color/colorWhite"
android:textSize="18sp" />
</LinearLayout>
</LinearLayout>
の親として
RelativeLayout
を作成します? – Mouleshあなたは衣装のツールバーを作ってから、画像を追加することができます –
LOL私はツールバーについてはまったく普通のレイアウトだと言っていました –