20 lines
634 B
XML
20 lines
634 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:gravity="center">
|
|
|
|
<ImageView
|
|
android:id="@+id/img_zoom_in"
|
|
android:layout_width="72dp"
|
|
android:layout_height="72dp"
|
|
android:src="@mipmap/icon_zoom_in_night" />
|
|
|
|
<ImageView
|
|
android:id="@+id/img_zoom_out"
|
|
android:layout_width="72dp"
|
|
android:layout_height="72dp"
|
|
android:src="@mipmap/icon_zoom_out_night" />
|
|
|
|
</LinearLayout> |