最終更新:2015-05-28 (木) 17:06:20 (3249d)  

android:id
Top / android:id

http://developer.android.com/guide/topics/resources/layout-resource.html

@+id

  • For the ID value, you should usually use this syntax form: "@+id/name".
  • The plus symbol, +, indicates that this is a new resource ID and the aapt tool will create a new resource integer in the R.java class, if it doesn't already exist.
  • For example:
    <TextView android:id="@+id/nameTextbox"/>
  • プラス記号付きのIDがもし R.java クラスにない場合は、aapt ツールが R.java クラスに新規リソースを作成する。