使活动/应用程序完全透明

时间:2016-09-27 18:47:24

标签: android android-activity transparent

我试图让我的应用程序透视到以前的应用程序。我没有使用浮动服务,因为它应该是主屏幕。

在清单

中的活动和应用程序上设置以下内容
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>
    );
},

只有使它成为黑屏。有没有办法完全透明?

1 个答案:

答案 0 :(得分:1)

完全透明。背后的是黑色。您的活动不在任务后台的另一项活动之前。