摘要:
public interface AttributeSet { /** * Returns the number of attributes available in the set. * * @return A positive integer, or 0 if the set is empty. */ public int getAttributeCount(); /** * Returns the name of the specified attribute. * * @param index Index o... 阅读全文
摘要:
public class FragAdapter extends FragmentPagerAdapter { private List fragments ; public FragAdapter(FragmentManager fm){ super(fm); } public FragAdapter(FragmentManager fm,List fragments) { super(fm); this.fragments = fragments; } @Override public Fr... 阅读全文
摘要:
/** * An object to convert Chinese character to its corresponding pinyin string. * For characters with multiple possible pinyin string, only one is selected * according to collator. Polyphone is not supported in this implementation. * This class is implemented to achieve the best runtime performance 阅读全文