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.
考虑使用参数 FILL_PARENT、FILL_PARENT 添加到线性布局的 VideoView。
线性布局被添加到作为相对布局的根布局中,参数为 WRAP_CONTENT、WRAP_CONTENT。
哪些参数在这里优先?
我可能错了,但这会导致您的 LinearLayout(以及 VideoView)的尺寸为 [0,0]。
VideoView 被添加到 LinearLayout 但必须等待设置其大小,因为它不知道其父级 LinearLayout 有多大。因此它的初始大小将是 [0,0]。然后你的LinearLayout被添加到RelativeLayout,但是由于参数是WRAP_CONTENT并且内容的大小是[0,0],LinearLayout的大小也设置为[0,0]。这又将 VideoView 的大小设置为 [0,0]。
WRAP_CONTENT