Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想自定义android附带的标准MediaController布局,我认为这样做的方式是制作自定义MediaController布局并以某种方式覆盖它,以便Android使用我的布局而不是它通常使用的布局
有什么方法可以帮助我实现我的目标吗?
创建一个类扩展 ViewGroup
覆盖 onMeasure() 以测量此视图及其子视图。
覆盖 onLayout() 以布局您的子视图。
这是如何创建自己的自定义布局的示例代码:
它与 WPF/silverlight 的 wrapPanel 非常相似。