我正在创建包含两个图片和文字的自定义ActionBar
。第一个ImageView
(图标)应固定在左侧,TextView
,第二个ImageView
(图像)固定在右侧。所有屏幕上的图像和文本大小必须相同。我怎样才能做到这一点?
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:weightSum="6">
<ImageView
android:id="@+id/icon"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginBottom="8dp"
android:layout_marginLeft="8dp"
android:layout_marginTop="8dp"
android:contentDescription="@null"
android:src="@drawable/ic_launcher"
android:layout_weight="1"/>
<LinearLayout
android:id="@+id/layout_text"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="4"
android:layout_marginBottom="8dp"
android:layout_marginLeft="8dp"
android:layout_marginTop="8dp"
android:layout_toRightOf="@id/icon"
android:layout_gravity="center_vertical">
<TextView
android:id="@+id/actionbar_title"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="mAPP"
android:gravity="center_vertical"
android:textColor="#ffffff"
android:textSize="@dimen/actionbar_title_text_size" />
</LinearLayout>
<ImageView
android:id="@+id/image"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_alignParentRight="true"
android:layout_marginBottom="8dp"
android:layout_marginTop="8dp"
android:layout_weight="1"
android:layout_toRightOf="@id/layout_text"
android:contentDescription="@null"
android:src="@drawable/ic_image" />
</LinearLayout>