0

将 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 更好还是仅使用“名称”就足够了?

4

2 回答 2

2

适当的约定是这样的: 从您提供的示例中,文本视图的适当 id 将是:contactinfo_textview_name

请注意,它的 NOT 规则。你可以使用任何你觉得舒服的东西!干杯

于 2012-04-26T14:54:30.883 回答
0

正如我指出的 Hardik4560,最好是具有足够描述性且不要太长的名称。

意识到您的应用程序可以增长很多(谁知道!?),并且可能有一段时间不再知道每个标识符属于哪个布局。

问候!

于 2012-04-26T14:26:30.850 回答