我试图让我的应用程序透视到以前的应用程序。我没有使用浮动服务,因为它应该是主屏幕。
在清单
中的活动和应用程序上设置以下内容var Answer = React.createClass({
getInitialState: function(){
return {edit: false, comments: []}
},
componentWillMount: function(){
$.ajax({
context: this,
method: 'GET',
url: '/answers/' + this.props.answer.id + '/comments/',
success: function(data){
this.setState({comments: data});
}
});
},
render: function(){
return (
<div>
//This renders with initial comments in the state, the empty array
<Comments comments={this.state.comments} />
</div>
);
},
只有使它成为黑屏。有没有办法完全透明?
答案 0 :(得分:1)
完全透明。背后的是黑色。您的活动不在任务后台的另一项活动之前。