Android 切换按钮 - Material 设计
Android Toggle Button - Material Design
如何实现 Material 设计指南 here 中指定的切换按钮?
是否可以从 Android 设计支持库中开箱即用,或者是否有可用的第三方库?
更新:现在有官方支持!请参阅下面 links/usage 的其他答案。
原文post:
当前库支持:否
自支持库 v23.2 起,当前的 ToggleButton
实现 未 表现,其样式也未按照引用的 Material 设计指南中的概述进行设计.
Material 准则:
当前支持的库样式:
请注意,按钮不会以圆形边框包围的组聚集在一起,使用文本代替图标,强调色用作下划线而不是深色背景以指示 'on'状态。
是否有外部图书馆:还没有。
我不知道有任何事实上的标准库可以实现 Material ToggleButton,但我希望那里可能有一些小的、几乎没有经过测试的库?不幸的是,Whosebug 不鼓励仅链接到外部第三方库的答案。因此,您需要自行搜索,或自行创建自定义视图以实施当前的 Material 设计指南。
希望对您有所帮助!
http://takeoffandroid.com/android-views/material-toggle-switch-using-appcompat-v7/
进口:
import android.support.v7.widget.SwitchCompat;
import android.widget.CompoundButton;
swt = (SwitchCompat)findViewById(R.id.Switch);
swt.setOnCheckedChangeListener (this);
swt.setChecked (true);
听众:
@Override
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
switch (buttonView.getId()) {
case R.id.Switch:
if(!isChecked){
Toast.makeText (SwitchActivity.this,"Err Switch is off!!",Toast.LENGTH_SHORT).show ();
}else{
Toast.makeText (SwitchActivity.this,"Yes Switch is on!!",Toast.LENGTH_SHORT).show ();
}
break;
default:
break;
}
}
xml:
<android.support.v7.widget.SwitchCompat
android:id="@+id/Switch"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textOff=""
android:text="Toggle Switch"
android:background="@android:color/transparent"
android:textColor="@color/secondary_text"
android:textOn=""
android:button="@null"
android:padding="20dp"/>
我也在找类似 ToggleButtonBar
的东西好一段时间了。
Material guidelines:
我能够通过滥用 RadioButtons 实现它:
为了实现这个单选 ButtonBar,我为单选按钮创建了一个 ToggleButton
样式并创建了一个 RadioGroup。
将此添加到您的 res/values/styles.xml:
<style name="ToggleButton" parent="@android:style/Widget.CompoundButton.RadioButton">
<item name="android:foreground">?android:attr/selectableItemBackground</item>
<item name="android:layout_width">match_parent</item>
<item name="android:layout_height">32dp</item>
<item name="android:background">@drawable/toggle_background</item>
<item name="android:button">@null</item>
<item name="android:paddingLeft">8dp</item>
<item name="android:textAllCaps">true</item>
<item name="android:paddingRight">8dp</item>
</style>
为背景 ColorStateList 创建一个 res/drawable/toogle_background.xml:
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_checked="true" android:state_window_focused="false">
<color android:color="@color/toggle_hover" />
</item>
<item android:state_checked="false" android:state_window_focused="false">
<color android:color="@color/toggle_normal" />
</item>
<item android:state_checked="true" android:state_pressed="true">
<color android:color="@color/toggle_active" />
</item>
<item android:state_checked="false" android:state_pressed="true">
<color android:color="@color/toggle_active" />
</item>
<item android:state_checked="true" android:state_focused="true">
<color android:color="@color/toggle_hover" />
</item>
<item android:state_checked="false" android:state_focused="true">
<color android:color="@color/toggle_normal_off" />
</item>
<item android:state_checked="false">
<color android:color="@color/toggle_normal" />
</item>
<item android:state_checked="true">
<color android:color="@color/toggle_hover" />
</item>
</selector>
将您的 res/values/colors.xml 附加到:
<color name="toggle_hover">@color/gray</color>
<color name="toggle_normal">@color/gainsboro</color>
<color name="toggle_active">@color/silver</color>
<color name="toggle_normal_off">@color/darkgray</color>
<color name="gainsboro">#DCdCdC</color>
<color name="silver">#C0C0C0</color>
<color name="darkgray">#a9a9a9</color>
<color name="gray">#808080</color>
在您的布局文件中使用此代码段创建一个 material 切换按钮组。在我的例子中是 activity_main.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:orientation="vertical">
<android.support.v7.widget.CardView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:cardCornerRadius="2dp"
app:cardElevation="2dp">
<RadioGroup
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal">
<RadioButton
style="@style/ToggleButton"
android:text="First" />
<RadioButton
style="@style/ToggleButton"
android:text="Second" />
<RadioButton
style="@style/ToggleButton"
android:text="Third" />
</RadioGroup>
</android.support.v7.widget.CardView>
</LinearLayout>
我使用 CardView 作为组的包装来实现圆角。不幸的是,在低于 Lollipop 的 Android 版本上,圆角将导致 CardView 的填充。您肯定可以在此处使用其他颜色或图标而不是文本或两者来应用您自己的样式。只需为这些情况创建您自己的 StateLists。
Toggle button requirements:
- Have at least three toggle buttons in a group
- Label buttons with text, an icon, or both
The following combinations are recommended:
- Multiple and unselected
- Exclusive and unselected
- Exclusive only
注意: 要使用 CardView,您需要将其依赖项添加到您的应用程序 build.gradle 文件:
compile 'com.android.support:cardview-v7:25.0.1'
Google 终于赶上我们了,现在 Material 库中有一个官方切换组:
https://material.io/components/buttons#toggle-button
年长 Post:
我创建了一个符合 Material 设计指南的 ToggleButton 库:
https://github.com/rcketscientist/ToggleButtons
compile 'com.anthonymandra:ToggleButtons:2.0.0'
如果您的 activity 有倒退 compatibility.See 下面的例子,您可以使用 SwitchCompat。
<android.support.v7.widget.SwitchCompat
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:checked="true"/>
编码愉快:D
借助 Material 组件库,您可以使用 MaterialButtonToggleGroup
.
类似于:
<com.google.android.material.button.MaterialButtonToggleGroup
android:id="@+id/toggleButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="A"
style="?attr/materialButtonOutlinedStyle"
/>
<Button
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="B"
style="?attr/materialButtonOutlinedStyle"
/>
<Button
android:id="@+id/button3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="C"
style="?attr/materialButtonOutlinedStyle"
/>
</com.google.android.material.button.MaterialButtonToggleGroup>
如何实现 Material 设计指南 here 中指定的切换按钮?
是否可以从 Android 设计支持库中开箱即用,或者是否有可用的第三方库?
更新:现在有官方支持!请参阅下面 links/usage 的其他答案。
原文post:
当前库支持:否
自支持库 v23.2 起,当前的 ToggleButton
实现 未 表现,其样式也未按照引用的 Material 设计指南中的概述进行设计.
Material 准则:
当前支持的库样式:
请注意,按钮不会以圆形边框包围的组聚集在一起,使用文本代替图标,强调色用作下划线而不是深色背景以指示 'on'状态。
是否有外部图书馆:还没有。
我不知道有任何事实上的标准库可以实现 Material ToggleButton,但我希望那里可能有一些小的、几乎没有经过测试的库?不幸的是,Whosebug 不鼓励仅链接到外部第三方库的答案。因此,您需要自行搜索,或自行创建自定义视图以实施当前的 Material 设计指南。
希望对您有所帮助!
http://takeoffandroid.com/android-views/material-toggle-switch-using-appcompat-v7/
进口:
import android.support.v7.widget.SwitchCompat;
import android.widget.CompoundButton;
swt = (SwitchCompat)findViewById(R.id.Switch);
swt.setOnCheckedChangeListener (this);
swt.setChecked (true);
听众:
@Override
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
switch (buttonView.getId()) {
case R.id.Switch:
if(!isChecked){
Toast.makeText (SwitchActivity.this,"Err Switch is off!!",Toast.LENGTH_SHORT).show ();
}else{
Toast.makeText (SwitchActivity.this,"Yes Switch is on!!",Toast.LENGTH_SHORT).show ();
}
break;
default:
break;
}
}
xml:
<android.support.v7.widget.SwitchCompat
android:id="@+id/Switch"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textOff=""
android:text="Toggle Switch"
android:background="@android:color/transparent"
android:textColor="@color/secondary_text"
android:textOn=""
android:button="@null"
android:padding="20dp"/>
我也在找类似 ToggleButtonBar
的东西好一段时间了。
Material guidelines:
我能够通过滥用 RadioButtons 实现它:
为了实现这个单选 ButtonBar,我为单选按钮创建了一个 ToggleButton
样式并创建了一个 RadioGroup。
将此添加到您的 res/values/styles.xml:
<style name="ToggleButton" parent="@android:style/Widget.CompoundButton.RadioButton">
<item name="android:foreground">?android:attr/selectableItemBackground</item>
<item name="android:layout_width">match_parent</item>
<item name="android:layout_height">32dp</item>
<item name="android:background">@drawable/toggle_background</item>
<item name="android:button">@null</item>
<item name="android:paddingLeft">8dp</item>
<item name="android:textAllCaps">true</item>
<item name="android:paddingRight">8dp</item>
</style>
为背景 ColorStateList 创建一个 res/drawable/toogle_background.xml:
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_checked="true" android:state_window_focused="false">
<color android:color="@color/toggle_hover" />
</item>
<item android:state_checked="false" android:state_window_focused="false">
<color android:color="@color/toggle_normal" />
</item>
<item android:state_checked="true" android:state_pressed="true">
<color android:color="@color/toggle_active" />
</item>
<item android:state_checked="false" android:state_pressed="true">
<color android:color="@color/toggle_active" />
</item>
<item android:state_checked="true" android:state_focused="true">
<color android:color="@color/toggle_hover" />
</item>
<item android:state_checked="false" android:state_focused="true">
<color android:color="@color/toggle_normal_off" />
</item>
<item android:state_checked="false">
<color android:color="@color/toggle_normal" />
</item>
<item android:state_checked="true">
<color android:color="@color/toggle_hover" />
</item>
</selector>
将您的 res/values/colors.xml 附加到:
<color name="toggle_hover">@color/gray</color>
<color name="toggle_normal">@color/gainsboro</color>
<color name="toggle_active">@color/silver</color>
<color name="toggle_normal_off">@color/darkgray</color>
<color name="gainsboro">#DCdCdC</color>
<color name="silver">#C0C0C0</color>
<color name="darkgray">#a9a9a9</color>
<color name="gray">#808080</color>
在您的布局文件中使用此代码段创建一个 material 切换按钮组。在我的例子中是 activity_main.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:orientation="vertical">
<android.support.v7.widget.CardView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:cardCornerRadius="2dp"
app:cardElevation="2dp">
<RadioGroup
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal">
<RadioButton
style="@style/ToggleButton"
android:text="First" />
<RadioButton
style="@style/ToggleButton"
android:text="Second" />
<RadioButton
style="@style/ToggleButton"
android:text="Third" />
</RadioGroup>
</android.support.v7.widget.CardView>
</LinearLayout>
我使用 CardView 作为组的包装来实现圆角。不幸的是,在低于 Lollipop 的 Android 版本上,圆角将导致 CardView 的填充。您肯定可以在此处使用其他颜色或图标而不是文本或两者来应用您自己的样式。只需为这些情况创建您自己的 StateLists。
Toggle button requirements:
- Have at least three toggle buttons in a group
- Label buttons with text, an icon, or both
The following combinations are recommended:
- Multiple and unselected
- Exclusive and unselected
- Exclusive only
注意: 要使用 CardView,您需要将其依赖项添加到您的应用程序 build.gradle 文件:
compile 'com.android.support:cardview-v7:25.0.1'
Google 终于赶上我们了,现在 Material 库中有一个官方切换组:
https://material.io/components/buttons#toggle-button
年长 Post:
我创建了一个符合 Material 设计指南的 ToggleButton 库:
https://github.com/rcketscientist/ToggleButtons
compile 'com.anthonymandra:ToggleButtons:2.0.0'
如果您的 activity 有倒退 compatibility.See 下面的例子,您可以使用 SwitchCompat。
<android.support.v7.widget.SwitchCompat
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:checked="true"/>
编码愉快:D
借助 Material 组件库,您可以使用 MaterialButtonToggleGroup
.
类似于:
<com.google.android.material.button.MaterialButtonToggleGroup
android:id="@+id/toggleButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="A"
style="?attr/materialButtonOutlinedStyle"
/>
<Button
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="B"
style="?attr/materialButtonOutlinedStyle"
/>
<Button
android:id="@+id/button3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="C"
style="?attr/materialButtonOutlinedStyle"
/>
</com.google.android.material.button.MaterialButtonToggleGroup>