gpt4 book ai didi

java - 为什么 TableRow 中的按钮在使用 XML 创建时未正确对齐,但在以编程方式创建时却正确对齐?

转载 作者:行者123 更新时间:2023-11-30 00:55:17 25 4
gpt4 key购买 nike

当我在 Android Studio 设计选项卡中创建行时,行中的按钮在我通过 XML 创建它们时似乎没有正确对齐。 Studio Designer

但是,当我通过膨胀以编程方式添加它们时,它们会正确对齐(请注意,带有键名的最后一行已被复制并直接粘贴到 XML 中,因此我可以测试我的表设置是否有问题):

enter image description here

这是该行的 xml 文件:

<?xml version="1.0" encoding="utf-8"?>
<TableRow xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/active_key_row"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginBottom="5pt"
android:layout_marginEnd="5pt"
android:visibility="visible">

<TextView
android:id="@+id/active_key_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Key Name" />

<Button
android:id="@+id/active_key_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/remove_key" />
</TableRow>

这是表格的 XML:

<TableLayout
android:id="@+id/bt_keys_table"
android:layout_width="match_parent"
android:layout_height="wrap_content">

<TableRow xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/active_key_row"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginBottom="5pt"
android:layout_marginEnd="5pt"
android:visibility="visible">

<TextView
android:id="@+id/active_key_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Key Name" />

<Button
android:id="@+id/active_key_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/remove_key" />
</TableRow>

<TableRow
android:id="@+id/empty_key_row"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginBottom="5pt"
android:layout_marginEnd="5pt"
android:visibility="visible">


<TextView
android:id="@+id/empty_text_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="" />

<Button
android:id="@+id/add_key_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:enabled="false"
android:text="@string/add_key" />
</TableRow>

</TableLayout>

这是膨胀的 Java 代码:

private void buildBtKeysTable() {

mBtKeysTable = (TableLayout) findViewById(R.id.bt_keys_table);

// Add the rows to the table
for (int i = 0; i < DEFAULT_MAX_KEYS; i++) {
// Inflate the row
final TableRow row = (TableRow)
getLayoutInflater().inflate(R.layout.active_keys_table_row, null);

mBtKeysTable.addView(row, 0);

Button button = (Button) row.findViewById(R.id.active_key_button);

// Subscribe to the active buttons for bluetooth
button.setOnClickListener(new View.OnClickListener() {
public void onClick(View arg0) {
removeBluetoothKey(row);
}
});
}
}

最佳答案

先生,那是因为您将 null 作为父 ViewGroup 参数传递给 inflate()。这将导致所有 layout_* 属性被忽略,因为 inflater 不知道哪些属性对于将放置它的容器有效(即它不知道在 View 上设置哪种 LayoutParams 类型)。

let we explore more ..

尝试替换这个

getLayoutInflater().inflate(R.layout.active_keys_table_row, null);
with
getLayoutInflater().inflate(R.layout.active_keys_table_row, item, false);

并弄清楚发生了什么。

关于java - 为什么 TableRow 中的按钮在使用 XML 创建时未正确对齐,但在以编程方式创建时却正确对齐?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40279072/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com