图像按下按钮改变大小

发布于 2024-12-12 11:54:58 字数 1125 浏览 0 评论 0原文

我意识到这个问题已经被问过多次,但我的图像在按下时会改变大小(应该是相同的大小,但图像不同)。我之前尝试过在java中设置按钮的大小,但它也不起作用。这是我的代码。

XML 选择器

<?xml version="1.0" encoding="utf-8"?>

    <selector xmlns:android="http://schemas.android.com/apk/res/android">

         <item android:state_pressed="true" 
           android:drawable="@drawable/testbuttonpressed" /> <!-- pressed -->

         <item android:drawable="@drawable/testbutton" /> <!-- default -->

    </selector>

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:background="@drawable/backtest1">

  <Button
    android:id="@+id/start_button"
    android:layout_width="225px"
    android:layout_height="55px"
    android:layout_marginTop="10dp"
    android:layout_gravity="center"
    android:text="@string/start"
        android:background="@drawable/buttonsxml"
   />

</LinearLayout>

I realize this has been asked multiple times, but my image is changing size when it is pressed (which is should be the same size, but a different image). I've previously tried setting the size of the button in java, but it didn't work either. Here is my code.

XML Selector

<?xml version="1.0" encoding="utf-8"?>

    <selector xmlns:android="http://schemas.android.com/apk/res/android">

         <item android:state_pressed="true" 
           android:drawable="@drawable/testbuttonpressed" /> <!-- pressed -->

         <item android:drawable="@drawable/testbutton" /> <!-- default -->

    </selector>

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:background="@drawable/backtest1">

  <Button
    android:id="@+id/start_button"
    android:layout_width="225px"
    android:layout_height="55px"
    android:layout_marginTop="10dp"
    android:layout_gravity="center"
    android:text="@string/start"
        android:background="@drawable/buttonsxml"
   />

</LinearLayout>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

爱,才寂寞 2024-12-19 11:54:58

结果我的照片差了一个像素......

It turns out my pictures were a pixel off...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文