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.
我是安卓新手。我想动态创建一个 webview 并在该单选按钮下方。我该如何为此创建android布局?我需要在列表视图中显示这些。帮我...
提前致谢...
您可以创建一个FrameLayout,您可以在其中创建一个WebView和一个RadioGroup作为子视图。并将重力设置RadioGroup为底部。在这种情况下,两个视图WebView都RadioGroup将重叠。
FrameLayout
WebView
RadioGroup
但是,如果您不希望它们重叠,请使用LinearLayout而不是FrameLayout并将其设置layout_weight="1"为WebView.
LinearLayout
layout_weight="1"
希望这会有所帮助。