尝试在EditText中输入文本时,CalendarView无法正常显示。 (软键盘打开,calendarview缩小) 如何设置calendarView固定的高度和宽度?
Datepicker的任何自定义库,如ios?
布局
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:background="@color/white"
android:layout_width="match_parent"
android:layout_height="match_parent">
<CalendarView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="20dp"
android:layout_above="@+id/im_date_edt"
android:id="@+id/calendarView"
android:layout_gravity="center_horizontal"/>
<EditText
android:id="@+id/im_date_edt"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:textStyle="bold"
android:layout_above="@+id/im_desc_edt"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/square_gray"
android:padding="10dp"
/>
<EditText
android:id="@+id/im_desc_edt"
android:layout_margin="20dp"
android:textStyle="bold"
android:layout_alignParentBottom="true"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/Description"
android:textColor="@android:color/black"
android:textColorHint="@color/md_grey_400"
android:background="@drawable/square_gray"
android:padding="10dp"
/>
</RelativeLayout>
检查图像。
答案 0 :(得分:0)
将RelativeLayout
换成ScrollView
。