在我的Parse Config中,我有这个参数:
lastRatio对象{"比率":10000,"时间":300}
如何从android访问它?我到目前为止尝试过这个但是没有工作
ui <- shinyUI(
fluidPage(
tags$style(HTML("
.tabs-above > .nav > li[class=active] > a {
background-color: #000;
color: #FFF;
}")),
tabsetPanel(
tabPanel(
title = "Hello",
textInput(inputId = "text", label = "Input")
),
tabPanel(
title = "World"
)
)
)
)
比率为{&#34;比率&#34;:10000,&#34;时间&#34;:300}总是,我只想访问&#34;比率&#34;:10000
答案 0 :(得分:0)
String ratio=config.getString("ratio");
通过这个你可以访问object ratio =“1000”
的值