如何在按钮上放置阴影并在Android中更改阴影模糊?

时间:2018-10-17 18:28:21

标签: android android-design-library

我正在尝试创建具有自定义阴影模糊以及阴影X和Y值的视图。

使用以下代码,我们可以在汽车视图上放置阴影,但如何更改模糊以及X和Y位置。

List<Integer> result = IntStream.iterate(0, i -> i + 1)
            .takeWhile(i -> {
                String arr[] = { "A", "B", "C", "D", "E", "F", "G", "H", "R", "T" };
                List<String> list = new ArrayList<>();
                Arrays.stream(arr)
                        .parallel()
                        .peek(list::add)
                        .forEach(x -> {
                        });

                if (list.contains(null)) {
                    System.out.println("It took " + i + " steps to see a null");
                    return false;
                }

                return true;
            })
            .boxed()
            .collect(Collectors.toList());

这是x和y以及模糊量

enter image description here

按钮应类似于:

enter image description here

enter image description here

0 个答案:

没有答案