Advertisement
Guest User

Untitled

a guest
Jul 31st, 2015
221
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. <style name="echelle_relecture">
  2. <item name="android:layout_width">fill_parent</item>
  3. <item name="android:layout_height">wrap_content</item>
  4. <item name="android:background">@drawable/btn_relecture_echelle</item>
  5. <item name="android:button">@null</item>
  6. <item name="android:layout_weight">1</item>
  7. <item name="android:layout_marginLeft">2dp</item>
  8. <item name="android:layout_marginRight">2dp</item>
  9. <item name="android:layout_gravity">center_horizontal</item>
  10. </style>
  11.  
  12. <RadioGroup android:layout_height="wrap_content" android:id="@+id/radioGroup1" android:layout_width="fill_parent" android:orientation="horizontal" android:layout_marginTop="10dp">
  13. <RadioButton style="@style/echelle_relecture" android:text="@string/day" android:id="@+id/jour" android:checked="true"></RadioButton>
  14. <RadioButton style="@style/echelle_relecture" android:text="@string/hour" android:id="@+id/hour" android:button="@null"></RadioButton>
  15. <RadioButton style="@style/echelle_relecture" android:text="@string/min" android:id="@+id/mins" android:button="@null" android:enabled="false"></RadioButton>
  16. </RadioGroup>
  17.  
  18. android:gravity="center"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement