我对 Android Studio 很陌生,所以请自行判断。
我想创建一个日历,它下面有一个每天的列表。这就是我所拥有的:
但我一直试图弄清楚如何为每个函数编写函数。在 fragmentManager 的帮助下,我有一些想法,例如一个视图中的两个片段。或者只是将 SimpleAdapter 添加到 FragmentA.java 列表。
我想说什么,我真的不知道我想要什么!我会很感激一些指针/指导或例子?
我在 Fragments 中有我的功能代码。我的活动是在 FragmentA.java、B 和 C 之间运行滑动功能。
片段_a.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clickable="true"
android:focusable="true">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="0.5"
android:clickable="true"
android:focusable="true">
<CalendarView
android:id="@+id/calendarView1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:adjustViewBounds="true"
android:clickable="true" />
</RelativeLayout>
<ListView
android:id="@+id/dailyView1"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="0.5"
android:layout_marginLeft="5dp"
android:layout_marginRight="5dp"
android:layout_gravity="center_horizontal|center"
android:clickable="true"
android:focusable="true" />
</LinearLayout>
将不胜感激你会如何做到这一点。该日历将与 API 对话。
谢谢!