第1行コード第1章

2703 ワード

1.androidロジックとビューの分離
レイアウトファイルにインタフェースを記述し、activityに導入します.たとえば
ActivityのonCreate()のsetContentView()
protected void onCreate(Bundle savedInstanceState) {
       super.onCreate(savedInstanceState);
       Log.d(TAG, "onCreate(bundle) called");
       setContentView(R.layout.activity_main);
       }

2.androidは一般的にres/values/stringsに文字列を定義する.xmlで、レイアウトファイルで参照できます.
まずstringsを見てみましょうxml
<?xml version="1.0" encoding="utf-8"?>
<resources>

    <string name="app_name">HelloWorld</string>
    <string name="edit_message">here shows questions</string>
    <string name="action_settings">Settings</string>
    <string name="correct">correct!</string>
    <string name="title_activity_display_messgae">DisplayMessgaeActivity</string>
    <string name="hello_world">Hello world!</string>
    <string name="incorrect">incorrect!</string>
    <string name="correct_toast">your answer is Correct!</string>
    <string name="incorrect_toast">your answer is not Correct!</string>
    <string name="next_question">next question</string>
    <string name="question_zhoujie">zhoujie\'s age is 22</string>
    <string name="question_zhangwei">zhangwei\'s age is 24</string>
    <string name="question_majian">majian\'s age is 26</string>
    <string name="last_question">last question</string>
    <string name="action_search">search</string>
</resources>

これらのstringはここで具体的に書いて、レイアウトファイルで参照すればいいです.
あちらに名前を書いて、具体的に使うときは名前によって正体を見つけることに相当します.
3.stringsの文字列を使用するには2つの方法があります.
コード:
R.string.edit_message

xmlで
@string/edit_message

4.androidのログツール類Log(androdi.util.Log)
Log.v()-----verboseログのセキュリティレベルが最も低い
Log.d()---デバッグ情報とdebugのレベル対応を印刷
Log.i()-----重要なデータを印刷して、対応するレベルはinfoで、debugより1級高い
Log.w()----warn対応レベルの警告メッセージを印刷
Log.e()----印刷エラーメッセージ
なぜシステムを使わないのですか.out.print()?
ログ印刷は制御できないため、印刷時間が確定できず、フィルタを追加できず、ログにはレベル区分がありません.