react-native:固定标题的阴影位于scrollView下方

时间:2017-01-08 07:09:37

标签: android ios react-native

我在View的顶部有一个固定位置的标题,然后是一个scrollView。当scrollView滚动时,它会在标题下面。没关系,但标题阴影将在中心移除并保持在边缘。如何修复阴影,以便通过滚动scrollView来改变它?

我正在使用 public function activateImage($id) { $result = jumbotron::where(['status' => 'Activated'])->count(); if($result > 5) { return back()->with('failed', 'Only 5 images can be activated!'); } else { echo "not yet";die; } return back()->with('activated','Image Activated successfully.'); } 将标题附加到页面顶部,如果我使用private void pictureBox_MouseClick(object sender, MouseEventArgs e){ if(e.Button == MouseButtons.Left) { MessageBox.Show("A"); } else if(e.Button = MouseButtons.Right) { MessageBox.Show("B"); } else if(e.Button = MouseDoubleClick.Right) <--how to fix this? { MessageBox.Show("C"); } else { MessageBox.Show("D"); } } 则没有阴影问题。我怎样才能拥有flex: 0的影子?

image of the header & scroolView

2 个答案:

答案 0 :(得分:1)

你应该使用zIndex。然后你的标题将显示在scrollView的顶部并有阴影。

答案 1 :(得分:0)

增加&#34; yourView.layer.zPosition&#34;的值。使值更高将优先考虑视图,尊重屏幕上的其他视图。