为TextView和ImageView设置相同的ID是否正确?
简短答案: 否
长答案:使用相同的ID 是 不 正确的,因为这样做可能会导致运行时错误。考虑下面的例子
layout.xml
<TextView android:id="@+id/location" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginLeft="0dp" android:layout_marginTop="12dp" /> <ImageView android:id="@+id/location" android:layout_width="70dp" android:layout_height="70dp" android:layout_marginStart="33dp" android:layout_marginTop="5dp" app:srcCompat="@drawable/openLoc" />
LocationActivity.java
setContentView(R.layout.activity_profile); //inflated layouttxtLocation = (TextView) findViewById(R.id.location);
在这里,您将在Activites中遇到问题,因为会混淆应该从两个元素中选择哪个元素。
顺便说一句 是的, 您可以在不同的布局中使用相同的ID,因为它不会产生任何运行时错误,因为它将仅在膨胀的布局中搜索ID。
编辑: 您可以在相同的布局中具有相同的ID。调用它时会导致问题,
findViewById()并引发类似异常
java.lang.ClassCastExceptionandroid.support.v7.widget.AppCompatImageView cannot be cast to android.widget.TextView
建议:
我不知道为什么要为两个元素分配相同的ID,但是如果您希望可读性,那么我建议您以一种可以通过ID轻松识别元素的方式设置ID,就像
android:id="@+id/txtLocation"
android:id="@+id/imgLocation"这样可以轻松识别元素类型只需阅读ID。您可以通过在开头添加布局名称来使 *** 作更加容易
android:id="@+id/profileTxtLocation"。现在,这将为您提供帮助,而编码为自动完成功能将为您提供帮助。只需键入布局名称,您将获得所有布局元素的列表,然后您将键入元素的类型,从而获得布局中所有要求的元素(例如:textViews)的列表。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)