26 lines
805 B
XML
26 lines
805 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<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:orientation="vertical"
|
|
tools:context="de.schildbach.wallet.ui.dashpay.NotificationsFragment">
|
|
|
|
<include
|
|
android:id="@+id/app_bar_general"
|
|
layout="@layout/app_bar_general"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content" />
|
|
|
|
<FrameLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<include
|
|
android:id="@+id/notifications"
|
|
layout="@layout/fragment_notifications" />
|
|
|
|
</FrameLayout>
|
|
|
|
</LinearLayout>
|