Android Studioにおける
kotlinプロジェクト文法について忘備録です。
HTMLにおけるDOCTYPみたいなもの
<?xml version="1.0" encoding="utf-8"?>
LinearLayoutの書き方
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
...
</LinearLayout>
ListViewの書き方
<ListView
android:id="@+id/lvMemoList"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginBottom="10dp"
android:layout_weight="0.6"/>
Buttonの書き方
<Button
android:id="@+id/btnAdd"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:onClick="onAddButtonClick"
android:text="追加"/>
TextViewの書き方
<TextView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:text="タイトル"
android:textSize="20sp"/>
EditText
<EditText
android:id="@+id/etTitle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>