如何在Zebble for Xamarin的页面底部创建固定按钮?

时间:2017-04-20 19:16:29

标签: c# xamarin xamarin.android xamarin-zebble zebble

我需要在页面底部创建两个带有列表视图的按钮。所以我在页面的主体中创建了两个堆栈,并将listview和按钮放到它们中,如下所示:

<z-place inside="Body">
   <Stack Direction="Vertical">
      <Stack Id="top">

  </Stack>
  <Stack Id="bottomMenu" Direction="Horizontal">
    <Button Text="Btn1" CssClass="btmButton1"></Button>
    <Button Text="Btn2" CssClass="btmButton2"></Button>
  </Stack>
 </Stack>
</z-place>

这样的样式表:

// Android.scss

.btmButton1 {
    background: linear-gradient(to bottom, #039795, #196e6d);
    color: #ffffff;
    height: 52px;
    margin: 0;
    border-radius: 0;
}

.btmButton2 {
    background: linear-gradient(to bottom, #5c0eb3, #3f1968);
    color: #ffffff;
    height: 52px;
    margin: 0;
    border-radius: 0;
}

#top {
    height: calc("(Zebble.Device.Screen.Height - view.ActualHeight)-140");
    background: #dadada
}

#bottomMenu {
    width: calc("Zebble.Device.Screen.Width");
    margin-top: calc("(Zebble.Device.Screen.Height - view.ActualHeight)-140");
    position: fixed;
}

但是,当我设置#top高度按钮时,隐藏了。

1 个答案:

答案 0 :(得分:2)

要在导航栏页面底部制作按钮栏,您可以在所有平台的common.scss中使用此css角色。

.btmButton1 {
background: linear-gradient(to bottom, #039795, #196e6d);
color: #ffffff;
height: 52px;
margin: 0;
border-radius: 0;
}

.btmButton2 {
background: linear-gradient(to bottom, #5c0eb3, #3f1968);
color: #ffffff;
height: 52px;
margin: 0;
border-radius: 0;
}

#top {
height: calc("(Zebble.Device.Screen.Height - 116)");
background: #dadada
}

#bottomMenu {
width: calc("Zebble.Device.Screen.Width");
height:52px;
}

您的主页面视图代码是:

  <z-place inside="Body">
    <Stack Direction="Vertical">

      <Modules.ContactsList Id="top" />

     <Stack Id="bottomMenu" Direction="Horizontal">
      <Button Text="Btn1" CssClass="btmButton1"></Button>
      <Button Text="Btn2" CssClass="btmButton2"></Button>
    </Stack>
  </Stack>
 </z-place>

上面的代码中有一个通知是列表视图,在列表视图中,您应该使用滚动视图来上下滚动列表。