会计交易的Seekbar。

时间:2013-12-04 07:02:45

标签: android android-layout android-custom-view android-seek

嘿,我正在制作一个官方用途应用程序,用于完成商业交易。

我想要一个 Bar或SeekBar 视图,其中显示此类公司的收入或费用

    如果费用超过,则
  • 红色
  • 绿色,如果获得收入

enter image description here

希望我们在许多应用中都有这种类型的自定义视图。

请帮我解决这个问题.. !!

2 个答案:

答案 0 :(得分:1)

您可以使用此轻量级库来实现您想要的效果。关于这一点的好处是你可以根据你的要求轻松定制它。

enter image description here

您所要做的就是三个xml文件...... Check this out....

希望这有帮助。

答案 1 :(得分:0)

<强> progress_bar.xml

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >

    <item android:id="@android:id/background">
        <shape>
            <solid android:color="#FF0000" />
        </shape>
    </item>
    <item android:id="@android:id/progress">
        <clip>
            <shape>
                <solid android:color="#00FF00" />
            </shape>
        </clip>
    </item>
</layer-list>

代码:

 SeekBar mSeekBar = (SeekBar) findViewById(R.id.seekBar1);
    mSeekBar.setProgressDrawable(getResources().getDrawable(R.drawable.progress_bar));