求组队了 Android 开发 四年
小风扇
共 717字,需浏览 2分钟
·
2017-07-17 17:17
android开发四年 求组队 希望能达成一个全能团队,前端服务端h5一体化服务
最近在写inflater布局实现
`
public interface LayoutInflaterFactory {
/**
* Hook you can supply that is called when inflating from a LayoutInflater.
* You can use this to customize the tag names available in your XML
* layout files.
*
* @param parent The parent that the created view will be placed
* in; note that this may be null.
* @param name Tag name to be inflated.
* @param context The context the view is being created in.
* @param attrs Inflation attributes as specified in XML file.
*
* @return View Newly created view. Return null for the default
* behavior.
*/
public View onCreateView(View parent, String name, Context context, AttributeSet attrs);
}
`
评论