- mongodb - 在 MongoDB mapreduce 中,如何展平值对象?
- javascript - 对象传播与 Object.assign
- html - 输入类型 ="submit"Vs 按钮标签它们可以互换吗?
- sql - 使用 MongoDB 而不是 MS SQL Server 的优缺点
我正在学习 android,并且正在努力理解这个特定的布局属性,阅读它说的 google dev 文档:
android:layout_column
The index of the column in which this child should be. Must be an integer value, such as "100". This may also be a reference to a resource (in the form "@[package:]type:name") or theme attribute (in the form "?[package:][type:]name") containing a value of this type. This corresponds to the global attribute resource symbol layout_column.
谁能解释这如何映射到等效的 html (因为表格行似乎从它们那里大量借用)?
是它所支持的列数 - 例如 colspan?
最佳答案
呃,它的意思是“这个 child 应该在的列的索引”。唯一棘手的部分是列从 0 开始。
例如:
<?xml version="1.0" encoding="utf-8"?>
<TableLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:stretchColumns="1">
<TableRow>
<TextView
android:text="URL:" />
<EditText android:id="@+id/entry"
android:layout_span="3"/>
</TableRow>
<TableRow>
<Button android:id="@+id/cancel"
android:layout_column="2"
android:text="Cancel" />
<Button android:id="@+id/ok"
android:text="OK" />
</TableRow>
</TableLayout>
上述布局中的两行都有四列。第一个有四列,因为它在第 0 列中有一个 TextView
和一个跨越第 1、2 和 3 列的 EditText
。第二个有四列,因为它跳过了列0 和 1 并将两个 Button
小部件放在第 2 列和第 3 列中,由第一个 Button
中的 android:layout_column="2"
属性提供>.
关于android - android :layout_column do?到底是什么,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4356372/
main.xml 文件代码: 我看过官方的 android 文档,从中我了解到,android:layout_column 表示这个
如何以编程方式设置 android:layout_column? 最佳答案 例如你有 TextView 然后这样做 TextView tv = new TextView(this); tv.setLa
我正在学习 android,并且正在努力理解这个特定的布局属性,阅读它说的 google dev 文档: android:layout_column The index of the column i
我有一个GridLayout,里面有一些TextView。我在 xml 中使用了 android:layout_column 并且它正在工作。现在我的问题是我们如何通过java编码来实现这一点。我看过
如何以编程方式设置 android:layout_column="1"?我看过其他一些答案,但所有这些答案都不适用于我的代码。他们都说要做这样的事情: layout.setLayoutParams(n
我有一个 GridLayout(不是 GridView),我想在其中添加一些具有特殊行和列 inex 的 View 。在 XML 中,我可以设置 View : 但是如何以编程方式设置属性 layou
本站xml代码:http://www.learn-android.com/2010/01/05/android-layout-tutorial/6/给出图像中显示的表格布局。 http://www.l
我的应用程序出错,错误提示 ParseError at [row,col]:[66,34] Message: http://www.w3.org/TR/1999/REC-xml
我是一名优秀的程序员,十分优秀!