Android Layout Youtube Like Bar

时间:2013-09-24 11:19:23

标签: android android-layout android-xml

Youtube Likes Bar

我想在我的Android布局中在图片(YouTube)中插入这样的栏。 是否有任何现成的小部件来实现这一目标?你会用什么? 两个矩形?正确设计了进度条?你能举个例子吗? 显然,条形图将是动态的,并且将检索红色/绿色平衡 在网上。 我的目标是7+ API。 非常感谢。

2 个答案:

答案 0 :(得分:1)

喜欢和不喜欢可以使用TextView设置其drawable属性:         android:drawableLeft =“@ drawable / my_icon”

或代码:

    myTextView.setCompoundDrawablesWithIntrinsicBounds(int left,int  top,int  right,int     bottom)

整体是可抽取的资源。如果你不想要任何东西,请使用0。

答案 1 :(得分:0)

android中没有这样的控件。您必须使用自定义进度条。为此,请查看以下链接

  

http://eagle.phys.utk.edu/guidry/android/progressBarExample.html

也可以自定义进度你可以参考这个链接

  

How to Customize a Progress Bar In Android

显示喜欢和不喜欢您必须使用imageview。 没有其他办法可以做到这一点