我在上述适用于 Android 的 IDE 中实施学校时间表时遇到问题。这个想法是用户可以为课程设置时间,并且它们将显示在该视图中。最好使用哪种视图?如何连接?
知道尝试实施它的最佳方法是什么吗?
在第一个屏幕上以 gridview/table view 选择日期。在第二个屏幕上显示自定义列表视图,其中包含时间段的日期和亵渎。您需要添加按钮以在列表视图中添加时间。单击该按钮显示需要时间和说明的输入对话框,
希望这就是你的想法。
创建 schedule.xml
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_height="fill_parent"
android:scrollbars="vertical">
<HorizontalScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_height="fill_parent">
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="fill_parent"
android:layout_width="fill_parent"
android:background="#000000"
android:id="@+id/RelativeLayout"
android:clickable="true"
>
<TextView
android:id="@+id/tv01"
android:layout_height="wrap_content"
android:text="Monday"
android:textColor="#000" >
</TextView>
对于每个 textView,我创建了一个 relativeLayout,其中在提到的 textView 下方插入了一个 listView。每个 listView 都是从 sqllite 数据库填充的,单击它会调用填充数据库的新活动。希望有所帮助。