Расширение диалога нижнего листа в приложении для Android - PullRequest
0 голосов
/ 03 февраля 2019

Я отображаю данные на нижнем листе, который вызывается при нажатии на экран кнопки.Однако на листе больше текста, чем можно отобразить на экране, и в результате текст обрезается.Как я могу это исправить, чтобы диалоговое окно можно было прокручивать за край экрана?

Мои xml-файлы макета нижнего элемента выглядят следующим образом:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center_vertical"
    android:text=""
    android:id="@+id/splo"
    />

</LinearLayout>

, и я вызываю его с помощьюследующий код:

 BottomSheetDialog dialog = new BottomSheetDialog(this);

    View view = getLayoutInflater().inflate(R.layout.fragment_bottom_layout, null);

    dialog.setContentView( view );

    TextView tv = (TextView) view.findViewById( R.id.splo);
    tv.setText( sp );

    dialog.show();

1 Ответ

0 голосов
/ 03 февраля 2019

Вы можете поместить свой TextView внутрь ScrollView.Ваш код должен выглядеть так:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">

<ScrollView
    android:layout_width="match_parent"
    android:layout_height="match_parent" >
<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center_vertical"
    android:text=""
    android:id="@+id/splo"
    />
</ScrollView>

</LinearLayout>
...