android.widget.Switch.getTextOn()方法的使用及代码示例

x33g5p2x  于2022-01-29 转载在 其他  
字(1.9k)|赞(0)|评价(0)|浏览(89)

本文整理了Java中android.widget.Switch.getTextOn()方法的一些代码示例,展示了Switch.getTextOn()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Switch.getTextOn()方法的具体详情如下:
包路径:android.widget.Switch
类名称:Switch
方法名:getTextOn

Switch.getTextOn介绍

暂无

代码示例

代码示例来源:origin: square/assertj-android

public SwitchAssert hasOnText(CharSequence text) {
 isNotNull();
 CharSequence actualText = actual.getTextOn();
 assertThat(actualText) //
   .overridingErrorMessage("Expected 'on' text <%s> but was <%s>.", text, actualText) //
   .isEqualTo(text);
 return this;
}

代码示例来源:origin: willowtreeapps/Hyperion-Android

public List<ViewAttribute> collect(final Switch view, AttributeTranslator attributeTranslator) {
  List<ViewAttribute> attributes = new ArrayList<>();
  attributes.add(new MutableStringViewAttribute("TextOn", view.getTextOn()) {
    @Override
    protected void mutate(CharSequence value) {

代码示例来源:origin: com.squareup.assertj/assertj-android

public SwitchAssert hasOnText(CharSequence text) {
 isNotNull();
 CharSequence actualText = actual.getTextOn();
 assertThat(actualText) //
   .overridingErrorMessage("Expected 'on' text <%s> but was <%s>.", text, actualText) //
   .isEqualTo(text);
 return this;
}

代码示例来源:origin: jbruchanov/AnUitor

@Override
  protected HashMap<String, Object> fillValues(View v, HashMap<String, Object> data,
                       HashMap<String, Object> parentData) {
    super.fillValues(v, data, parentData);

    Switch s = (Switch) v;

    data.put("TextOn", s.getTextOn());
    data.put("TextOff", s.getTextOff());
    if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN) {
      data.put("SwitchMinWidth", s.getSwitchMinWidth());
      data.put("SwitchPadding", s.getSwitchPadding());
      data.put("ThumbTextPadding", s.getThumbTextPadding());
    }

    if (Build.VERSION.SDK_INT >= VERSION_CODES.LOLLIPOP) {
      data.put("ShowText", s.getShowText());
      data.put("SplitTrack", s.getSplitTrack());
    }

    return data;
  }
}

相关文章