嗨,我想让我的线性布局像按钮一样工作。我的意思是,当状态改变时,我试图改变它的背景色。我使用选择器来解决它,但它不起作用。
我寻找解决方案,他们只说添加可点击属性。我已经做过了。
我的LinearLayout包含两个LinearLayout,每个LinearLayout包含9个文本视图。它们完全填满了我的直线布局。
我想到的是它的孩子正在吸收点击事件,我的线性布局不会将其状态更改为按下。
因此,我在线性布局的每个子项上都将clickable和focusalbe属性设置为false。
然而,它仍然是一样的。
这是我的密码。
这是选择器jbbtn。xml
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android" >
<item android:state_enabled="true" android:state_pressed="true"
android:drawable="@drawable/jbbtn_pressed"/>
<item android:state_enabled="true"
android:drawable="@drawable/jbstyle_transparent"/>
<item android:state_enabled="false" android:drawable="@drawable/jbbtn_disabled"/>
</selector>
这是我的直线布局
<LinearLayout
android:id="@+id/llCurrents"
android:background="@drawable/jbbtn"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_alignTop="@+id/llTimer"
android:layout_below="@id/btnMenu"
android:layout_marginRight="3sp"
android:clickable="true"
android:focusable="true"
android:orientation="horizontal"
android:padding="3sp" >
~~~~~~
</LinearLayout>
虽然这个问题有答案,但我写这个是为了澄清和给出我的观察。
@minelight的答案不适用于不可单击的视图,例如LinearLayout和TextView。statePressed状态仅适用于可单击的视图。
第二个答案实际上完成了第一个答案。
您可以添加:
android:clickable="true"
到LinearLayout
。
我使用线性布局作为按钮,但是,我没有任何分配为可点击或不,它似乎工作得很好。我已经为我的标准按钮设置了一个样式,我只是将该样式分配给线性布局,就像我将任何其他按钮一样。
作为按钮的线性布局:
<LinearLayout
style="@style/btn_stand"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:onClick="onClickLLButton"
android:orientation="vertical" >
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:text="Button Label" />
<TextView
android:id="@+id/tvLLButton"
android:layout_height="0px"
android:layout_weight="1"
android:gravity="center"
android:text="Button Info" />
</LinearLayout>
我对按钮的风格定义:
<style name="btn_stand" parent="AppBaseTheme">
<item name="android:background">@drawable/btn_stand_sel</item>
<item name="android:textColor">@drawable/btn_stand_text_color</item>
<item name="android:minHeight">48dp</item>
<item name="android:paddingLeft">5dp</item>
<item name="android:paddingRight">5dp</item>
</style>
我的@可绘制/btn_stan_sel文件:
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<!-- disabled state -->
<item android:drawable="@drawable/btn_stand_disabled" android:state_enabled="false"/>
<!-- enabled and pressed state -->
<item android:drawable="@drawable/btn_stand_pressed" android:state_enabled="true" android:state_pressed="true"/>
<!-- enabled and focused state -->
<item android:drawable="@drawable/btn_stand_focused" android:state_enabled="true" android:state_focused="true"/>
<!-- enabled state -->
<item android:drawable="@drawable/btn_stand_enabled" android:state_enabled="true"/>
</selector>
我的绘图文件重复为每个状态只是不同的颜色为每个状态:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >
<stroke
android:width="1dp"
android:color="@color/stroke" />
<solid android:color="@color/blue" />
<corners android:radius="6dp" />
</shape>
问题内容: 任何答案如何设置所选单元格的背景色? 问题答案: 斯威夫特4.2 对于多个选择,您需要将属性设置为 true 。 myTableView.allowsMultipleSelection = true 如果您将 UITableViewCell 子类化,则可以在自定义单元格类中重写方法。
本文向大家介绍Android View背景选择器编写技巧,包括了Android View背景选择器编写技巧的使用技巧和注意事项,需要的朋友参考一下 在项目中选择器的使用是非常多的,以下是本人在项目中的一些常用的背景选择器的写法 带边框下划线背景选择器效果图: 上面布局中放了10个CheckBox,然后设置了CheckBox的背景图片位,背景选择器,同时设置了字体的颜色选择器。 带边框下划线背景选择
问题内容: 我有一个框,当单击框并显示所有选项时,我正在尝试更改选项的背景色。 HTML: CSS: 问题答案: 你需要把对标签,而不是标签… 如果要为每个标签设置样式,请使用css 选择器:
我有一个选择框,当选择框被单击并显示所有选项时,我正在尝试更改选项的背景颜色。
我有一个观点,我设置了一个选择器背景,应该达到触摸。它可以,但只在4.x上。在2.3上,它对触摸没有反应。有什么问题吗?布局如下: 这是background_selector.xml:
当我触摸一个物品时,只要按下它,它就会闪烁蓝色。我想保持蓝色直到另一个项目被选中,就像Nexus7上的Gmail应用一样。 最干净的方法是什么?我宁愿避免手动设置背景,我假设有一种方法可以将一个元素标记为“活动的”元素,并相应地将其主题化。