Android XML布局中,怎么设置两个Button按钮在同一行显示
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android XML布局中,怎么设置两个Button按钮在同一行显示相关的知识,希望对你有一定的参考价值。
在Button里面分别添加 android:layout_weight=“1” 可以使两个button所占空间一样,这时两个Button按钮在同一行显示。
XML在各种开发中都广泛应用,Android也不例外。作为承载数据的一个重要角色,写XML成为Android开发中一项重要的技能。在Android中,常见的XML解析为DOM解析器。
DOM是基于树形结构的的节点或信息片段的集合,允许开发人员使用DOM API遍历XML树、检索所需数据。分析该结构通常需要加载整个文档和构造树形结构,然后才可以检索和更新节点信息。
由于DOM在内存中以树形结构存放,因此检索和更新效率会更高。但是对于特别大的文档,解析和加载整个文档将会很耗资源。如果XML文件的内容比较小,采用DOM也是可行的。
参考技术A 在Button外面使用线性布局,设置水平属性;Button的宽设置是wrap;在Button里面分别添加 android:layout_weight=“1” 可以使两个button所占空间一样 参考技术B <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="button1"
/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="button2"
/>
</LinearLayout>
android:orientation="horizontal"这个属性就能设置这个线性布局里的view是在一行的 参考技术C 嵌套LinearLayout!要多少个自己定!
以上是关于Android XML布局中,怎么设置两个Button按钮在同一行显示的主要内容,如果未能解决你的问题,请参考以下文章
Android XML:在 XML 布局文件中将资源 ID 设置为 View 的标签