Я пытаюсь отображения карапуз 3 изображения: - кнопку воспроизведения в центре - две иконки на правойандроид XML сохранить размер изображения
это как: [___x__xx]
Я добавил два черных изображения слева, чтобы playbutton находился в центре. Проблема в том, что эти два значка не являются оригинальными размерами, но выбраны. Как я могу это решить?
мой код:
<LinearLayout
android:layout_width="fill_parent"
android:id="@+id/relativeLayoutText1"
android:layout_below="@id/relativeLayout3"
android:layout_height="wrap_content">
<ImageView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/spacex"
android:layout_weight="1" />
<ImageView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/spacex"
android:layout_weight="1" />
<ToggleButton
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/btnPlayPause"
android:background="@drawable/togglebutton_playpause"
android:layout_centerVertical="true"
android:textOff=" "
android:textOn=" "
android:layout_toLeftOf="@+id/netwerkImg"
android:layout_marginBottom="@dimen/abc_button_inset_vertical_material"
android:layout_weight="1" />
<ImageView
android:src="@android:drawable/ic_menu_gallery"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/netwerkImg"
android:paddingRight="10px"
android:layout_centerVertical="true"
android:layout_weight="1"
android:adjustViewBounds="true"
android:scaleType="center" />
<ImageView
android:src="@android:drawable/ic_menu_gallery"
android:id="@+id/exitImg"
android:scaleType="centerInside"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_weight="1" />
две иконки исчезли с экрана – beginner