アクティビティに Caldroid カレンダーを含めようとしています。次のように、カレンダーが画面の 3/4 を占めるようにします。
ただし、常に画面の上部に表示されます。
これは私のレイアウトです:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:id="@+id/opciones"
android:layout_width="299dp"
android:layout_height="match_parent"
android:orientation="horizontal">
</LinearLayout>
<LinearLayout
android:id="@+id/calendar1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
</LinearLayout>
</LinearLayout>
そして、これは私がカルドロイドを取り付ける方法です:
FragmentTransaction t = getSupportFragmentManager().beginTransaction();
t.replace(R.id.calendar1, caldroidFragment);
t.commit();
StackOverFlow で検索しましたが、解決策が見つかりません。