2016-03-24 20 views
0

EditTextでテキストを入力しようとすると、CalendarViewが正しく表示されません。 (ソフトキーボードが開き、カレンダービューが縮小します) calendarViewの固定高さと幅の設定方法は?カレンダーのUIが正しく表示されない

iosのようなDatepickerのカスタムライブラリはありますか?

レイアウト

<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> 

画像を確認してください。

enter image description here

答えて

0

あなたRelativeLayoutScrollViewでラップ。

関連する問題