如何在android中实现imagebrush的大小

发布于 2024-11-06 07:59:58 字数 199 浏览 0 评论 0原文

我是安卓开发新手。我已经开始实施与油漆相关的应用程序。我希望用户选择显示在栏上的画笔大小。我的意思是,按“+”按钮时,它应该增加画笔大小并在栏上稍微移动,反之亦然,按“-”按钮时。有没有可以像 iPhone 中那样使用的 API(我听说过 spinner API)?我在网上没有找到任何这样的API。

非常感谢任何帮助。

提前致谢。
-普拉蒂玛

I am new to android development. I have started implementing paint related app. In that i wanted the user to select the brush size which is shown on a bar. I mean on pressing '+' button it should increase the brush size and move slightly on the bar and vice versa on pressing '-' button. Is there any API which I can use like the one in iPhone(I heard about spinner API)? I have not found any such API on the net.

Any help is greatly appreciated.

Thanks in advance.
-Pratima

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

昔梦 2024-11-13 07:59:58

SeekBar 怎么样?
例如

  RelativeLayout.LayoutParams params3 = 
                new RelativeLayout.LayoutParams(RelativeLayout.LayoutParams.FILL_PARENT,
                    RelativeLayout.LayoutParams.WRAP_CONTENT);      
            params3.addRule(RelativeLayout.ABOVE, RemindButton.getId());
            WidthBar = new SeekBar(this);
            WidthBar.setMax(70);
            WidthBar.setProgress(15);
            WidthBar.setOnSeekBarChangeListener(new OnSeekBarChangeListener() {

                @Override
                public void onStopTrackingTouch(SeekBar seekBar) {


                }

                @Override
                public void onStartTrackingTouch(SeekBar seekBar) {
                    // TODO Auto-generated method stub

                }

                @Override
                public void onProgressChanged(SeekBar seekBar, int progress,
                        boolean fromUser) {
                    if (fromUser)
                    mPaint.setStrokeWidth(progress); //Change StrokeWidth       
                }
            });
 LL.addView(WidthBar,params3);

What's about SeekBar?
For example

  RelativeLayout.LayoutParams params3 = 
                new RelativeLayout.LayoutParams(RelativeLayout.LayoutParams.FILL_PARENT,
                    RelativeLayout.LayoutParams.WRAP_CONTENT);      
            params3.addRule(RelativeLayout.ABOVE, RemindButton.getId());
            WidthBar = new SeekBar(this);
            WidthBar.setMax(70);
            WidthBar.setProgress(15);
            WidthBar.setOnSeekBarChangeListener(new OnSeekBarChangeListener() {

                @Override
                public void onStopTrackingTouch(SeekBar seekBar) {


                }

                @Override
                public void onStartTrackingTouch(SeekBar seekBar) {
                    // TODO Auto-generated method stub

                }

                @Override
                public void onProgressChanged(SeekBar seekBar, int progress,
                        boolean fromUser) {
                    if (fromUser)
                    mPaint.setStrokeWidth(progress); //Change StrokeWidth       
                }
            });
 LL.addView(WidthBar,params3);
§对你不离不弃 2024-11-13 07:59:58
    public static void addStrokeWidth(Paint paint, int width) {
        paint.strokeWidth += width
    }
    public static void addStrokeWidth(Paint paint, int width) {
        paint.strokeWidth += width
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文