- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试从这里实现分段单选按钮:https://github.com/makeramen/android-segmentedradiobutton但我需要以编程方式而不是在 XML 中设置图像。
这是自定义 RadioButton 的来源:
public class CenteredImageButton extends RadioButton {
Drawable image;
public CenteredImageButton(Context context, AttributeSet attrs) {
super(context, attrs);
TypedArray a = context.obtainStyledAttributes(attrs,
R.styleable.CompoundButton, 0, 0);
image = a.getDrawable(1);
setButtonDrawable(android.R.id.empty);
}
@Override
protected void onDraw(Canvas canvas) {
super.onDraw(canvas);
if (image != null) {
image.setState(getDrawableState());
// scale image to fit inside button
int imgHeight = image.getIntrinsicHeight();
Log.d("IMAGEHEIGHT", "imageWidth is " + imgHeight);
int imgWidth = image.getIntrinsicWidth();
Log.d("IMAGEWIDTH", "imageWidth is " + imgWidth);
int btnWidth = getWidth();
Log.d("BUTTONWIDTH", "buttonWidth is " + btnWidth);
int btnHeight = getHeight();
Log.d("BUTTONHEIGHT", "buttonHeight is " + btnHeight);
float scale;
if (imgWidth <= btnWidth && imgHeight <= btnHeight) {
scale = 1.0f;
} else {
scale = Math.min((float) btnWidth / (float) imgWidth,
(float) btnHeight / (float) imgHeight);
}
Log.d("SCALE", "scale is " + scale);
int dx = (int) ((btnWidth - imgWidth * scale) * 0.5f + 0.5f);
Log.d("DX", "dx is " + dx);
int dy = (int) ((btnHeight - imgHeight * scale) * 0.5f + 0.5f);
Log.d("DY", "dy is " + dy);
image.setBounds(dx, dy, (int) (dx + imgWidth * scale),
(int) (dy + imgHeight * scale));
image.draw(canvas);
}
}
我在另一个文件中设置 drawable 是这样的:
private void setButtonImageProperties(RadioButton button,Drawable drawable){
button.setGravity(Gravity.CENTER);
Resources resources = this.context.getResources();
float dipValue = TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP,
60, resources.getDisplayMetrics());
float dipValue1 = TypedValue.applyDimension(
TypedValue.COMPLEX_UNIT_DIP, 80, resources.getDisplayMetrics());
button.setMinHeight((int) dipValue);
button.setMinWidth((int) dipValue1);
button.setButtonDrawable(drawable);
}
请大家指教。我真的需要帮助。谢谢。
最佳答案
您几乎需要向 CenteredImageButton 添加一个 setImage 方法:
public void setImage(Drawable newImage) {
image = newImage;
}
稍后在您的主代码中调用它:
button.setImage(drawable);
查看此要点以查看内联方法:https://gist.github.com/1470789
我还注意到您将我的类的名称从 CenteredRadioImageButton 更改为 CenteredImageButton。如果您实际上没有将此用于类似 RadioButton 的行为,我建议使用标准 ImageButton
(我是 SegmentedRadioButton 的维护者)
关于android - 将可绘制图像传递给 Android 中的 TypedArray,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8473615/
C# 有一个高性能的数组复制函数来复制数组就地: Array.Copy(source, destination, length) 它比手动操作更快,即: for (var i = 0; i < len
我正在学习泛型,并用编译器解决了这个问题: type FloatArray = Float32Array | Float64Array; type IntegerArray = | Int8Arr
查看 TypedArray ( link ) 的源代码,我似乎无法弄清楚这两种方法之间的区别。 getInt() 与getInteger() 基本相同,只是在最后加了一个我看不懂的小东西。谁能给我解释
sdk更新到Android 5.0后方法消失了TextView.getTextColor(Context context, TypedArray typedArray, int defStyle) .
为什么 TypedArray 不如常规数组快?我想存储一些预先计算的整数值,并且需要尽可能快地访问数组。 http://jsperf.com/array-access-speed-2/2 准备代码:
我正在尝试使用 WebGL,并希望将一些不同的类型混合到一个字节缓冲区中。我知道 TypedArrays 可以达到这个目的,但不清楚我是否可以与它们混合类型(OpenGL 顶点数据通常是与无符号字节或
我正在学习自定义组件,我在使用自定义 xml 属性时遇到了一些问题。 我的自定义组件扩展了 LinearLayout 并在构造函数中(public Custom(Context context, At
This answer告诉我调用 recycle() TypedArray 的方法允许它被垃圾收集。我的问题是为什么 TypedArray 特别需要一种方法来对其进行垃圾回收?为什么它不能像普通对象一
在 Chrome(可能还有其他浏览器)中,当我将值存储到超出其范围的 TypedArray 时,它会被 chop : const arr = new Uint16Array(1); arr[0] =
我试图用这个简单的代码片段将 typedArray 拆分成更小的 block : const buf = new Uint8Array([0x02, 0x00, 0x07, 0x63, 0x6f, 0
我有一个源 Float32Array,我从中创建了一个辅助 Float32Array。我有一个值序列 model,我想将其作为重复序列复制到辅助 Float32Array 中。我目前正在使用反向 wh
要测试一个对象是否是一个数组,有一个方法—— const myarray = [1,2,3,4]; Array.isArray(myarray); //returns true 对于类型化数组(例如,
在尝试为自己构建一个 WebGL 3D 库时(主要是学习目的),我遵循了从各种来源找到的文档,这些文档指出 TypedArray 函数 set() (专门针对 Float32Array ),在 C 中
我有一个 typedArray,其中包含我想在 ListView 中使用的图标。当我尝试在 for 循环 this.navDrawerIcons 中引用 typedArray 中包含的元素时如下所示,
给定像 Uint8Array 这样的类型化数组,似乎有两种方法可以通过 worker 传输它们。 选项 1 直接发送缓冲区并在接收端进行转换: 发件人:postMessage({fooBuffer:
根据the documentation on the Uint8ClampedArray , The Uint8ClampedArray typed array represents an array
我在 android 自定义 TextView 中设置了多个标志属性,如何使用 TypedArray 恢复这些属性 最佳答案 attrs.xml
我从使用 android L 预览版的设备收到一些崩溃报告,问题是 Caused by: java.lang.RuntimeException: [17, ...... ] recycled twic
我正在尝试编写一个函数,通过将任意 TypedArray 作为输入来扩展/缩小 TypedArray,并返回一个具有不同大小的新的相同类型的 TypedArray,并将原始元素复制到其中。 例如,当您
我正在通过 XHR 加载远程资源并将其接收为 arrayBuffers 。底层数据为float32依赖。我需要对这些数组缓冲区进行一些进一步的操作,例如串联和合并。对于这些操作,我正在尝试 buffe
我是一名优秀的程序员,十分优秀!