下部に があり、RelativeLayout
その上に高さが異なる「GraphBar」カスタム ビューを作成しました。コードは次のとおりです。TextView
ImageView
public class GraphBar extends RelativeLayout {
private int mAvailHeight; // space for the bar (component minus label)
private float mBarHeight; // 0.0-1.0 value
public GraphBar(Context context) {
this(context, null);
}
public GraphBar(Context context, AttributeSet attrs) {
this(context, attrs, 0);
}
public GraphBar(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
LayoutInflater.from(context).inflate(R.layout.graphbar, this, true);
setId(R.id.graphBar); // defined in <merge> but not assigned (?)
}
@Override
protected void onSizeChanged(int w, int h, int oldw, int oldh) {
super.onSizeChanged(w, h, oldw, oldh);
mAvailHeight = getHeight()-findViewById(R.id.label).getHeight();
}
@Override
protected void onLayout(boolean changed, int l, int t, int r, int b) {
super.onLayout(changed, l, t, r, b);
View bar2 = findViewById(R.id.smallBar);
RelativeLayout.LayoutParams llp2 = (RelativeLayout.LayoutParams) bar2.getLayoutParams();
llp2.height = Math.round((float)mAvailHeight * mBarHeight);
}
public void setBarHeight(float value, float max) {
mBarHeight = value / max;
findViewById(R.id.smallBar).requestLayout();
}
public void setLabel(CharSequence c) {
((TextView) findViewById(R.id.label)).setText(c);
}
}
これらの GraphBars を追加して高さを設定するとonCreate()
うまくいきますが、onClickSomething を作成するかsetBarHeight()
、作成したバーで再度呼び出すと、変更を確認する唯一の方法はビュー階層を読み込むことです。ここで、どこかに電話する必要があると言われましたrequestLayout()
。変更後以外の場所はmBarHeight
?何か助けはありますか?私はどこでも試しinvalidate()
ました。
ありがとう、アンドレア
(必要に応じて、テストを行うアクティビティとgraphbar.xmlを投稿できます)
おそらくバグであることがわかりました。回避策は、再度呼び出す必要がありますrequestLayout()
。それでも、どこに電話をかけることができるのかわかりません。