我在安多里德工作。我设计了一些图像的菜单。当显示为纵向时,此菜单很好,如下所示:_
但是当在横向模式下看到这个程序时,图像会被拉伸。
像这样 :-
但我想看到与纵向模式相同大小的图像,即使图像之间的空间可能会改变。这是我的代码:-
<LinearLayout
android:id="@+id/linearLayout1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:paddingLeft="10dp"
android:paddingRight="10dp"
android:layout_centerVertical="true" >
<ImageButton
android:id="@+id/btnMediaMenu"
android:scaleType="fitXY"
android:background="@null"
android:onClick="menuClicked"
android:layout_width="32px"
android:layout_marginRight="10dip"
android:layout_height="32px"
android:src="@drawable/media" />
<same code for other images... />
请建议我应该怎么做,这样这些图像不能被拉伸,图像之间的空间可能会增加以填满屏幕。
先感谢您。