Android 的 LinearLayouts 画廊
我正在使用 Gallery 小部件创建 LinearLayouts 画廊,每个画廊都包含一个按钮。问题是,当滚动或单击 LinearLayout 时,该按钮会变为“按下”状态。我该如何预防?我希望它只对直接按钮点击做出反应。
谢谢
//编辑:附加代码
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="260dip"
android:layout_height="wrap_content"
android:padding="10dip">
<!-- some other things here -->
<Button style="@style/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:text="Just testing" />
</LinearLayout>
I'm using Gallery widget to create gallery of LinearLayouts, each of them containing a button. The problem is that while scrolling or clicking LinearLayout that button gets "pressed" state. How do I prevent it? I want it to react only to direct button clicks.
Thanks
// Edit: attached code
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="260dip"
android:layout_height="wrap_content"
android:padding="10dip">
<!-- some other things here -->
<Button style="@style/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:text="Just testing" />
</LinearLayout>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我刚刚发现这里也提出了同样的问题:Gallery/AdapterView Child Drawable State
重写 setPressed 就可以了。
I've just found out the same question has been asked here: Gallery/AdapterView Child Drawable State
Overriding setPressed did the trick.