Guest User

Untitled

a guest
Jan 17th, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. <resources>
  2. <declare-styleable name="WeightedLayout_LayoutParams">
  3. <attr name="horizontalWeights" format="string" />
  4. <attr name="verticalWeights" format="string" />
  5. </declare-styleable>
  6. </resources>
  7.  
  8. final TypedArray arr=context.obtainStyledAttributes(attrs,R.styleable.WeightedLayout_LayoutParams);
  9. //...
  10. final String horizontalWeights=arr.getString(R.styleable.WeightedLayout_LayoutParams_horizontalWeights);
Add Comment
Please, Sign In to add comment