问题标签 [gradientdrawable]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
android - 如何在 Android 中以编程方式为 GradientDrawable 设置 TopLeftRadius 和 BottomLeftRadius
我有一个 ShapeDrawable 。我想以编程方式设置 CornerRadius (TopLeftRadius & BottomLeftRadius)。
下面是我的xml
android - GradientDrawable in android
I have 3 buttons, which needs to have white background and radius of 20
My GradientDrawable function
i use call the function and set the background
GradientDrawable buttonGradient = imageButtonGradient();
captureImageButton.setBackground(buttonGradient);
I can see it capture button as i need it
However when i use the gradient for Back and submit button
I am using the same function for GradientDrawable. Using the same way to call the function. I am using it as following
As shown, the back button and submit button have been both rounded. So it is working, however i am just not sure why the captureImageButton is not showing full white color as it should.
Any suggestions?
java - 为什么 gradientdrawable.setBackground 使我的应用程序崩溃?
没有编译错误,只是在我试驾的时候就崩溃了
android - 以编程方式为自定义视图设置形状颜色
我制作了一个自定义微调器,我正在尝试以编程方式更改自定义视图中布局的背景。我尝试了很多用这种方法改变布局背景,但它不起作用。如何设置像 xml 代码一样的背景可绘制对象?
提前致谢。
ExtendSpinner 类:
布局
我使用 ExtendSpinner 的 activity_main.xml
android - 在 GradientDrawable Android 上设置描边
我正在创建一个自定义按钮,我正在使用 Drawable.setTintList 为默认、按下和禁用状态设置颜色。
我想实际为按钮添加一个边框,我正在尝试这样做:
有了这个,边框是不可见的,但是如果我不使用色调列表,那么我会看到边框。
有没有办法可以使用 setStroke 和 TintList?
我试过 d.setStroke(width, colorList) 也没有用。
xamarin.forms - 在android自定义渲染器代码中添加底线?
我知道默认DatePicker
已经有一个底线,但我试图DatePicker
在自定义渲染器代码中添加一个底线(出于某种目的)。
我可以设置GradientDrawable
对象的完整边框,myGradientDrawable.SetStroke(3, myColor);
但我不知道如何只添加底线,所以任何人都可以帮助我吗?
android-studio - 将 GradientDrawable 转换为位图
对不起,如果我听起来太菜鸟。有什么方法可以像转换 GradientDrawable
成位图格式。我正在尝试将 GradientDrawable 设置为设备壁纸。非常感谢你。:)
android - 以编程方式为 ImageView 设置不同的角半径
我正在以编程方式创建 ImageView 并尝试为每个角设置不同的角半径:
这似乎cornerRadii
行不通。
如果我正在使用shape.cornerRadius = 100f
它的工作,但对于所有角落。
我也试过mutate()
在设置之前打电话,cornerRadii
但它并没有影响 ImageView。