2017-07-22から1日間の記事一覧

ListView

ListView Mian.axmlでListViewの定義をします。 そのあと表示させるViewのテンプレートを作成しました。 Main.axml <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="match_parent" android:layout_height="match_parent"> </linearlayout>

画面遷移

こんな感じで画面遷移ができる 画面遷移先のActitityを用意しておくことが大切 using System; using Android.App; using Android.Content; using Android.Runtime; using Android.Views; using Android.Widget; using Android.OS; namespace App_naitive.Dro…