java – 如何在视图中添加线性布局的顶部代码?

前端之家收集整理的这篇文章主要介绍了java – 如何在视图中添加线性布局的顶部代码?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我需要在代码添加一个线性布局的admob adview,但是我需要将其插入布局的顶部,而不是底部.

有没有办法做到这一点?

解决方法

使用:

public void addView (View child,int index) Since: API Level 1

Adds a child view. If no layout parameters are already set on the
child,the default parameters for this ViewGroup are set on the child.
Parameters child the child view to add index the position at which
to add the child See Also

所以

yourLayout.addView(yourView,0);

http://developer.android.com/reference/android/view/ViewGroup.html#addView(android.view.View,%20int)

原文链接:https://www.f2er.com/java/123992.html

猜你在找的Java相关文章