我正在使用但在需要使用操作栏时Theme.Light.NoTitleBar
切换到。Theme.Holo.Light
但是我刚刚发现我的一些按钮被拉伸了。它们是具有自定义背景和 xml 的标准按钮,可在按下时更改颜色。这是按钮的 xml:
<Button
android:id="@+id/logOutBtn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:layout_marginBottom="10dp"
android:layout_marginRight="10dp"
android:background="@drawable/logout_btn" />
它处于相对布局中。实际背景为 50px x 50px。奇怪的是我有几个相同布局的按钮,分别是 75px 和 100px 正方形,它们都很好。只是这些较小的那些变得扭曲/拉伸。它显示在 Eclipse 的设计视图和物理设备上。
有任何想法吗?