Button 和 ToggleButton 不会在同一高度对齐
我在使用 XML 设计应用程序的菜单时遇到了麻烦。我想要做的是将 ToggleButton
和 Button
置于相同高度,但 Button
并未显示对齐。就好像它下面有一些看不见的东西使它看起来更高一点。
我一直在寻找信息,但一无所获
这是我在 main.xml 上编写的代码:
(...)
<TextView
android:text="Option1:"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal">
<ToggleButton
android:id="@+id/toggle_option1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:width="100sp"
android:height="50sp" />
<Button
android:id="@+id/button_option1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:height="50sp"
android:text="See"
/>
</LinearLayout>
有什么想法吗?
I'm having troubles designing the menu of an application with XML. What I want to do is to have both ToggleButton
and Button
at same height, but the Button
doesn't appear aligned. It's like if it had something invisible below it that makes it appear a little higher.
I've been looking for info, but I found nothing
Here's the code I wrote on the main.xml:
(...)
<TextView
android:text="Option1:"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal">
<ToggleButton
android:id="@+id/toggle_option1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:width="100sp"
android:height="50sp" />
<Button
android:id="@+id/button_option1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:height="50sp"
android:text="See"
/>
</LinearLayout>
Any Idea?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
试试这个:
Try this:
这就是我所做的:
This is what I did: