LinearLayout 上的选择器颜色

发布于 11-27 00:27 字数 1498 浏览 0 评论 0原文

我正在尝试将颜色选择器分配给 LinearLayout 的扩展类,因此,我认为这就像我们谈论 LinearLayout 一样。

我按照这篇文章上的说明进行操作,答案谈论形状。

现在我在drawables文件夹上有3个xml:

normal.xml文件

<shape xmlns:android="http://schemas.android.com/apk/res/android"
  android:shape="rectangle" >
  <solid android:color="#ffffffff" />
</shape>

pressed.xml文件

<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >
   <solid android:color="#00000000" />
</shape>

最后是bg.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/pressed" />
    <item android:state_focused="true" android:drawable="@drawable/pressed" />
    <item android:state_selected="true" android:drawable="@drawable/pressed" />
    <item android:drawable="@drawable/normal" />
</selector>

我通过以下方式访问它:

    Drawable d = getResources().getDrawable(context.getResources().getIdentifier("mypackageuri.tProject:drawable/bg", null, null));
    view.setBackgroundDrawable(d);

“正常”状态很好,颜色设置为“normal.xml” “,但其他的没办法,我按我的观点,什么也没有发生,它没有以任何方式改变颜色......

我看不出我做错了什么......

谢谢

I'm trying to assing a color selector to an extended class of LinearLayout, so, i think its like if we speak about linearLayout.

i followed the instructions on this post, the answer talking about shapes.

Now i have 3 xml on drawables folders:

normal.xml file

<shape xmlns:android="http://schemas.android.com/apk/res/android"
  android:shape="rectangle" >
  <solid android:color="#ffffffff" />
</shape>

pressed.xml file

<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >
   <solid android:color="#00000000" />
</shape>

and finally, bg.xml file

<?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/pressed" />
    <item android:state_focused="true" android:drawable="@drawable/pressed" />
    <item android:state_selected="true" android:drawable="@drawable/pressed" />
    <item android:drawable="@drawable/normal" />
</selector>

I am accessing this in the following way:

    Drawable d = getResources().getDrawable(context.getResources().getIdentifier("mypackageuri.tProject:drawable/bg", null, null));
    view.setBackgroundDrawable(d);

The "normal" state its fine, with the color set at "normal.xml", but no way with the other ones, I press my view and nothing happens, it's not changing color in any way...

I can't see what i'm doing wrong...

Thank you

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

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

发布评论

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

评论(1

情绪操控生活2024-12-04 00:27:50

您的视图需要可点击,以便在单击它时获得按下状态。
使用 :

    view.setClickable(true);

或在布局 xml 中:

    android:clickable="true"

Your view needs to be clickable in order to get the state pressed when you click on it.
Use :

    view.setClickable(true);

or in the layout xml :

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