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.
伙计们,我有以下布局:http ://dpaste.com/hold/755261/
它有两个搜索栏小部件。两者都没有显示。如果我将它们移动到根线性布局,它们就会出现,否则不会出现。我需要它们在第一个线性布局内。任何人都可以帮助我如何实现这一目标?
看起来您需要在第三个 LinearLayout 中添加以下内容:
android:layout_weight="1"
将第二个 LinearLayout 高度更改为 wrap_content。如果内容不适合屏幕,那么也许您必须使用 ScrollView。