defStyleRes has no effect in custom View (RelativeLayout)
问题 The following constructor call attempts to style my custom RelativeLayout2 using the defStyleRes parameter but it has no effect. I ported this sample project to AndroidStudio and it worked ok. public RelativeLayout2(Context context, IAttributeSet attributeSet) : base(context, attributeSet, 0, Resource.Style.RelativeLayout2) { } styles.xml <resources> <style name="RelativeLayout2"> <item name="android:layout_width">40dp</item> <item name="android:layout_height">300dp</item> <item name="android