将 id 分配给 xml 资源中的布局视图时,我通常会执行以下操作:
(示例)contact_info.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" >
<TextView
android:id="@+id/contact_info_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
这里的 TextView 包含联系人的姓名。使用这样的完整 ID 更好还是仅使用“名称”就足够了?