【发布时间】:2016-09-02 14:45:42
【问题描述】:
因此,选择框不适用于 Android 设备(例如 Galaxy s6)。我正在使用离子框架..当我单击选择框时,什么也没有出现,但是如果我在边框处单击它(这很难)选项显示。我知道这是一个离子的错误..有什么解决方案吗?提前谢谢this is a select box imageand this is options menu
<div class="list list-language">
<label class="item item-input item-icon-left item-select">
<div class="input-label">
<i class="flag {{ $root.locale }}"></i>
<i class="icon icon-arrow-right-alt"></i>
</div>
<select ng-model="$root.locale" ng-change="vm.changeLocale($root.locale)" tabindex="-1">
<option ng-selected="$root.locale == 'en'" value="en">{{ 'ENGLISH' | translate }}</option>
<option ng-selected="$root.locale == 'ka'" value="ka">{{ 'GEORGIAN' | translate }}</option>
<option ng-selected="$root.locale == 'ru'" value="ru">{{ 'RUSSIAN' | translate }}</option>
</select>
</label>
</div>
【问题讨论】:
-
你用其他智能手机试试了吗???
-
在某些智能手机上可以,但在某些智能手机上不行。例如:s6 或 sony 或 ect.. 我还尝试了其他在 ionic 上编写的移动应用程序,而且他们的选择在我的智能手机上也不起作用
-
你使用 1 或 2 哪个离子版本???
-
我正在使用 ionic v1
-
我也面临同样的问题。是否已有可用的解决方案?
标签: html angularjs cordova ionic-framework cordova-plugins