codecamp

不透明触摸

一个包装器是为了让视图对触发做出合适的响应。按下按钮,包装后的视图的透明性就会降低,变暗。这个动作的完成实际上并没有改变视图的层次,一般来说很容易添加到一个应用程序,并且不会产生奇怪的副作用。

例子:

renderButton: function() {  return (
    <TouchableOpacity onPress={this._onPressButton}>
      <Image
        style={styles.button}
        source={require('image!myButton')}
      />
    </TouchableOpacity>
  );
},

工具

Edit on GitHub

TouchableWithoutFeedback props...

activeOpacity 数值

当触发处于活跃状态时,确定包装后的使徒的不透明度。


高亮触摸
无反馈触摸
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }