为什么视图的 id 在包含的布局中相同?



我对布局及其ID的一些奇怪行为有问题。

假设我有一个主布局,通过将其包含在 xml 布局中,我使用了 3 倍的其他布局。

当我id包含布局内的按钮时,所有包含的布局都是一样的。这是正确的行为吗?我想在OnClickListener中使用它来区分点击的按钮。

layout_row.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<Button
android:id="@+id/btnDoSomething"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Do something" />
[... some other views ...]
</RelativeLayout>

activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<include android:id="@+id/layout1"
layout="@layout/layout_row" />
<include android:id="@+id/layout2"
layout="@layout/layout_row" />
<include android:id="@+id/layout3"
layout="@layout/layout_row" />
[... some other views ...]
</LinearLayout>

主活动

import android.os.Bundle
import kotlinx.android.synthetic.main.activity_main.*
import org.jetbrains.anko.AnkoLogger
import org.jetbrains.anko.info
class MainActivity : AppCompatActivity(), AnkoLogger {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
info("${layout1.btnDoSomething.id}")
info("${layout2.btnDoSomething.id}")
info("${layout3.btnDoSomething.id}")
//it logs the same id three times!
}
}

您使用 include 语句包含相同的layout_row.xml布局文件三次,仅更改了包含布局的 ID。

它们是彼此的精确副本,因此android:id="@+id/btnDoSomething"条目每次都返回相同的 ID - ID 在字符串中定义.xml。

此行为是正确的,因为包含使用相同的布局和相同的视图 ID。如果要区分按钮单击,可以为每个按钮创建不同的OnClickListener

layout1.findViewById(R.id.btnDoSomething).setOnClickListener(new OnClickListener() {
@Override
public void onClick(View view) {
// button of layout1 click
}
});
layout2.findViewById(R.id.btnDoSomething).setOnClickListener(new OnClickListener() {
@Override
public void onClick(View view) {
// button of layout2 click
}
});
layout3.findViewById(R.id.btnDoSomething).setOnClickListener(new OnClickListener() {
@Override
public void onClick(View view) {
// button of layout3 click
}
});

相关内容

  • 没有找到相关文章

最新更新