本文介绍了android-如何设置等级栏在HTC mobile中不可点击和可触摸的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我的应用程序具有等级栏.我要设置评分栏为不可点击且不可触摸.为此,我在每个等级栏的xml
文件中添加了以下代码.
My application have rating bars. I want to set the Rating bar is non-click able and no-touchable. For this i added the following code in xml
file of each rating bar.
它正在三星银河Apollo GT-i5801中工作.但是它不能在HTC mobile中使用.为什么?
It is working in samsung galaxy Apollo GT-i5801. But it is not working in the HTC mobile. Why?
xml代码
android:clickable="false"
android:focusableInTouchMode="false"
android:focusable="false"
谢谢
推荐答案
您还可以使用以下命令从XML中将RatingBar设置为指示符:
You could also set the RatingBar as indicator from the xml with the following:
android:isIndicator="true"
这篇关于android-如何设置等级栏在HTC mobile中不可点击和可触摸的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!