Master detail split styling in android

后端 未结 1 1943
无人及你
无人及你 2021-01-31 06:55

This question probably has been asked many times over here, without yielding useful answers. I\'d place it here with a possible answer. Feel free to improve.

相关标签:
1条回答
  • 2021-01-31 07:03

    In this solution , I have used 9-patch background images, to define 2 kinds of backgrounds for list items. So, the selected(checked) list Item has a different background, as shown:

    enter image description here (list item)

    enter image description here (selected item)

    enter image description here (list item)

    The list item layout's parent view, is a class extending LinearLayout (can be any ViewGroup) and implementing Checkable. Hence, when ListView is set to choice mode, it can automatically check/uncheck this view. This checked state is then used by selector background assigned to this view :

    <selector xmlns:android="http://schemas.android.com/apk/res/android">
      <item android:state_checked="true" android:drawable="@drawable/checked"/>
      <item android:drawable="@drawable/unchecked"/>
    </selector>
    

    This makes the background of list item view change automatically, without having to do it manually in code every time a list item is selected.

    Result:

    enter image description here

    Additional points:

    1. Scrollbar can be moved to left side.
    2. Use list dividers that match shadow color, or more padding can be placed between list items and detail view.
    0 讨论(0)
提交回复
热议问题