示例#1
0
 /// <summary>
 /// Gets the title for a particular
 /// <see cref="ItemView">ItemView</see>
 /// </summary>
 /// <param name="itemView">The ItemView that is receiving the title</param>
 /// <returns>
 /// Either the title or condensed title based on what the ItemView
 /// prefers
 /// </returns>
 internal java.lang.CharSequence getTitleForItemView([email protected]
                                                     .ItemView itemView)
 {
     return(((itemView != null) && itemView.prefersCondensedTitle()) ? getTitleCondensed
                () : getTitle());
 }