私はアンドロイドアプリを作らなければなりません。それは大学生のために二段ベッドを数えることについてです。だから私はそれをこのようにしたい:
スピナー1は
ブランチを選択
- 自分
- CE
- それ
- EE
学期を選択
1
位2
位3位
4位
等
これで、学生がMEと3学期を選択している場合、彼の3学期の科目は次のようになります。
件名の二段ベッドを入力してください:
ABC1:EditText
ABC2:EditText
ABC3:EditText
ABC4:EditText
ABC4:EditText
そして、ユーザーによるこの入力は、出席率の論理になり、回答は同じ件名の別のページに表示される必要があります。
誰か助けてくれませんか?
編集
私のMain.xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello" />
<Spinner
android:id="@+id/spinner1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
</LinearLayout>