setting_view_switch_item.xml 633 B

123456789101112131415161718
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:id="@+id/setting_view_switch_item_container"
  4. style="@style/SettingViewContainer" >
  5. <ImageView
  6. android:id="@+id/setting_view_switch_item_icon"
  7. style="@style/SettingViewIcon" />
  8. <TextView
  9. android:id="@+id/setting_view_switch_item_title"
  10. style="@style/SettingViewTitleH" />
  11. <com.jsjty.jdc.app.widget.setting.item.SwitchButton
  12. android:id="@+id/setting_view_switch_item_switch"
  13. style="@style/SettingViewSwitch" />
  14. </LinearLayout>