2
カスタムビューのandroid:layout_widthとandroid:layout_heightの値にはどのようにアクセスしますか?カスタムビューのandroid:layout_widthおよびandroid:layout_heightパラメータにはどのようにアクセスしますか?
サンプルXML:CustomButtonで
<com.example.CustomButton
android:id="@+id/btn"
android:layout_width="150dp"
android:layout_height="70dp" />
:
@Override
protected void onMeasure(int widthSpec, int heightSpec) {
int measuredWidth = MeasureSpec.getSize(widthSpec);
int measuredHeight = MeasureSpec.getSize(heightSpec);
// How can we measure based on android:layout_width, android:layout_height?
// Currently this implementation measures off the parent's values
setMeasuredDimension(measuredWidth, measuredHeight);
}
私はありがとうございました。 – Dude