Не могу сделать палитру в полноэкранном режиме активности - PullRequest
0 голосов
/ 01 декабря 2018

Я хочу добавить указатель даты на весь экран.Я использовал match_marent, но он не может работать.Там есть поле в правой части экрана.Не могу удалить это.Это мой xml:

<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/dp_starting_date"
tools:context=".StartingDateFragment">

<DatePicker
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    />

Это выглядит так:

enter image description here

1 Ответ

0 голосов
/ 01 декабря 2018

Попробуйте это

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:id="@+id/dp_starting_date"
    android:layout_height="match_parent"
    tools:context=".StartingDateFragment" >

    <DatePicker
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_gravity="center"
        android:layout_marginTop="37dp"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true"
        android:scaleX="1.1"
        android:scaleY="1.1"/>

</RelativeLayout>
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...