Home | History | Annotate | Download | only in notification

Lines Matching defs:content

17 import android.content.Context;
26 * with the corresponding content in the second child of this view.
35 * Run 2 measurement passes, 1 that figures out the size of the content, and another
36 * that sets the size of the radio buttons to the heights of the corresponding content.
52 View content = radioContent.getChildAt(i);
56 View contentClick = findFirstClickable(content);
58 lastView = findLastClickable(content);
59 if (radio.getLayoutParams().height != content.getMeasuredHeight()) {
61 radio.getLayoutParams().height = content.getMeasuredHeight();
70 private View findFirstClickable(View content) {
71 if (content.isClickable()) return content;
72 if (content instanceof ViewGroup) {
73 ViewGroup group = (ViewGroup) content;
82 private View findLastClickable(View content) {
83 if (content.isClickable()) return content;
84 if (content instanceof ViewGroup) {
85 ViewGroup group = (ViewGroup) content;