布局可点击选择器不起作用 - 为什么?
layout clickable selector doesn't work - why?
创建登录页面。但我不知道这段代码有什么问题
登录按钮不起作用,单击时会更改颜色!
我想要当我点击然后改变颜色按钮时
为什么不更改 'LOGIN' 按钮?
我该如何解决这个问题?
activity_login.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:padding="16dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_marginBottom="16dp"
android:background="@drawable/btn_login"
android:clickable="true"
android:gravity="center"
android:paddingLeft="32dp"
android:paddingRight="32dp">
<ImageView
android:layout_width="30dp"
android:layout_height="30dp"
android:src="@drawable/icon_user" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:text="LOGIN"
android:textColor="#fff"
android:textSize="16dp" />
</LinearLayout>
</LinearLayout>
selector xml ->
btn_login.xml
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_enabled="true">
<shape android:shape="rectangle">
<solid android:color="#4DAEEA" />
<corners android:radius="30dp" />
</shape>
</item>
<item android:state_pressed="true">
<shape android:shape="rectangle">
<solid android:color="#00ff00" />
<corners android:radius="30dp" />
</shape>
</item>
<item android:state_enabled="false">
<shape android:shape="rectangle">
<solid android:color="#999" />
<corners android:radius="30dp" />
</shape>
</item>
</selector>
您应该通过添加样式和删除背景使 LinearLayout 表现得像一个按钮,请按照以下步骤操作
<LinearLayout
......
style="@style/btn_stand"
.......
>
</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>
我的@drawable/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>
这是一个适合我的例子,希望你使用它并选择你想要的颜色
将 android:focusable="true"
添加到您的线性布局 xml 代码中。
如果这不起作用,您可以尝试将 android:background=@drawable/btn_login
替换为 android:foreground="?android:attr/selectableItemBackground"
。
创建登录页面。但我不知道这段代码有什么问题 登录按钮不起作用,单击时会更改颜色!
我想要当我点击然后改变颜色按钮时
为什么不更改 'LOGIN' 按钮?
我该如何解决这个问题?
activity_login.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:padding="16dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_marginBottom="16dp"
android:background="@drawable/btn_login"
android:clickable="true"
android:gravity="center"
android:paddingLeft="32dp"
android:paddingRight="32dp">
<ImageView
android:layout_width="30dp"
android:layout_height="30dp"
android:src="@drawable/icon_user" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:text="LOGIN"
android:textColor="#fff"
android:textSize="16dp" />
</LinearLayout>
</LinearLayout>
selector xml -> btn_login.xml
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_enabled="true">
<shape android:shape="rectangle">
<solid android:color="#4DAEEA" />
<corners android:radius="30dp" />
</shape>
</item>
<item android:state_pressed="true">
<shape android:shape="rectangle">
<solid android:color="#00ff00" />
<corners android:radius="30dp" />
</shape>
</item>
<item android:state_enabled="false">
<shape android:shape="rectangle">
<solid android:color="#999" />
<corners android:radius="30dp" />
</shape>
</item>
</selector>
您应该通过添加样式和删除背景使 LinearLayout 表现得像一个按钮,请按照以下步骤操作
<LinearLayout
......
style="@style/btn_stand"
.......
>
</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>
我的@drawable/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>
这是一个适合我的例子,希望你使用它并选择你想要的颜色
将 android:focusable="true"
添加到您的线性布局 xml 代码中。
如果这不起作用,您可以尝试将 android:background=@drawable/btn_login
替换为 android:foreground="?android:attr/selectableItemBackground"
。