2016-11-29 80 views
0

我正在使用react-native在android中創建ToDo應用程序。對於CRUD操作,我正在使用數據庫。現在,當我發出數據庫請求時,我會顯示繁忙的指示符,直到我的請求完成並設置相同的狀態。但我的問題在於,loder顯示在最底層(比如我的任務下面),而不是像往常一樣顯示上述任務。我也嘗試使用ZIndex,但它不工作。繁忙指示器反應原生

View image

任何幫助將appericiated。 謝謝你.. !!

+0

能否請您在此處添加的,而不是圖像的代碼? – Nabin

+0

您應該顯示忙碌指示符或內容。我想知道你是否試圖實現兩者(如YouTube視頻加載) – Vkrm

回答

2

您可以覆蓋在使用正確的樣式設置頁面中的示忙..

<View style={styles.indicator}> 
    <ActivityIndicator animating={this.state.loading} size="small"/> 
</View> 

let styles = StyleSheet.create({ 
    indicator: { 
    flex: 1, 
    alignItems: 'center', 
    justifyContent: 'center', 
    position: 'absolute', 
    top: 0, 
    left: 0, 
    right: 0, 
    bottom: 0 
    } 
})