我想像这样创建一个android默认值ToggleButton
:
但我想在没有 TEXT 的情况下创建它
我试过这段代码:
ToggleButton tb = new ToggleButton(map);
tb.setText(null);
tb.setTextOn(null);
tb.setTextOff(null);
但它在水平绿色条的顶部留下了一个空白空间。
我不想要那个空白空间,我只想要水平的绿色条。
如何实现?
谢谢
我想像这样创建一个android默认值ToggleButton
:
但我想在没有 TEXT 的情况下创建它
我试过这段代码:
ToggleButton tb = new ToggleButton(map);
tb.setText(null);
tb.setTextOn(null);
tb.setTextOff(null);
但它在水平绿色条的顶部留下了一个空白空间。
我不想要那个空白空间,我只想要水平的绿色条。
如何实现?
谢谢
顶部的空白区域是由默认的 toggleButton 样式中使用的 2 Ninepatch (btn_toggle_off.9.png
和) 引起的。btn_toggle_on.9.png
要使水平条完美居中,您必须为 ToggleButton 创建一个新样式,该样式将使用两个新的 Ninepatch 派生形式 original。
编辑:需要最少 XML 的方法:
为您的切换按钮创建两个九个补丁,将其命名为:my_btn_toggle
_on 和my_btn_toggle_off
在drawable文件夹中,创建my_btn_toggle.xml
:
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_checked="false" android:drawable="@drawable/my_btn_toggle_off" />
<item android:state_checked="true" android:drawable="@drawable/my_btn_toggle_on" />
</selector>
在您的代码中,添加tb.setBackgroundResource(R.drawable.my_btn_toggle)
:
ToggleButton tb = new ToggleButton(map);
tb.setText(null);
tb.setTextOn(null);
tb.setTextOff(null);
tb.setBackgroundResource(R.drawable.my_btn_toggle)
只需设置以下内容:
<ToggleButton android:id="@+id/tbtn1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/bg_check"
android:textOn=""
android:textOff=""
android:text="" />
而且,样式 xml,如果您需要...
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_checked="true"
android:drawable="@drawable/bg_check_on" /> <!-- pressed -->
<item android:drawable="@drawable/bg_check_off" /> <!-- default/unchecked -->
</selector>
希望有帮助~
使用
<ToggleButton
...
android:textOff="@null"
android:textOn="@null"
android:textSize="0dp" />
不仅会使文本消失,而且还会摆脱原本会显示的空白空间。
我是这么想的
android:textColor="@android:color/transparent"
像这样填充样式 XML.. 神奇的是文本颜色透明...
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:textOff="blabla"
android:textOn="blablabla"
android:textColor="@android:color/transparent"
android:background="@drawable/boutmediumrouge"
/>
不是最优雅的解决方案,但tb.setTextSize(0);
如果您只是想隐藏顶部的额外空间,您可以尝试。可能需要将 textOn/textOff 设置为空字符串:tb.setTextOn("");
编辑:我更好的选择是通过extend
ing创建您自己的自定义按钮Button
,保持状态(有关按下/未按下状态,请参阅此 SO 帖子:Pressed android button state)并找到要设置为适当状态的资产...
<ToggleButton
android:id="@+id/setting_tb"
style="@style/style_setting_tb"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:checked="true"
android:gravity="center"
android:minHeight="0dp"
android:minWidth="0dp"
android:textColor="@color/White"
android:textOff=""
android:textOn=""
android:textSize="14sp" />
使用 aCheckBox
而不是ToggleButton
. CheckBox
它们具有相同的状态并因此实现相同的功能,但您可以通过定义其<android:button="@drawable/...">
属性轻松更改外观。
<ToggleButton
android:id="@+id/tooglebutton"
android:layout_width="60dp"
android:layout_height="25dp"
android:textOff="off"
android:textOn="on"
android:textSize="0dp"
/>
布局文件.xml
<ToggleButton
android:id="@+id/toggle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:layout_marginEnd="8dp"
android:background="@drawable/check"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
在主要活动.java
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
final ToggleButton mic = (ToggleButton)findViewById(R.id.toggle);
mic.setTextOff(null);
mic.setTextOn(null);
mic.setText(null);
layout.xml 使用的 check.xml
<?xml version="1.0" encoding="utf-8"?>
<item android:drawable="@drawable/mic_on"
android:state_checked="true">
</item>
<!-- When not selected, use white-->
<item android:drawable="@drawable/mic_off"
android:state_checked="false">
</item>
这些行是您正在寻找的那些
mic.setTextOff(null);
mic.setTextOn(null);
mic.setText(null);