我对布局及其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>
MainActivity
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!
}
}
答案 0 :(得分:1)
您已使用include语句包含相同的layout_row.xml布局文件三次,仅更改包含布局的ID。
它们是彼此的精确副本,因此android:id="@+id/btnDoSomething"
条目每次都返回相同的ID - ID在strings.xml中定义。
答案 1 :(得分:1)
此行为是正确的,因为include使用具有相同视图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
}
});