我必须制作一个android应用程序。它是关于为大学生计算铺位的。所以我想让它像这样:
微调器 1 有
选择分支
- 我
- 行政长官
- 它
- EE
选择学期
第 1次 第
2次 第
3次 第
4 次
等等
现在如果学生选择我和第三学期,那么他的第三学期科目应该是这样的:
输入主题的双层:
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>