19 lines
801 B
XML
19 lines
801 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.core.widget.NestedScrollView
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior"
|
|
tools:showIn="@layout/activity_main"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
tools:context=".activity.MainActivity">
|
|
|
|
<fragment android:name="hu.yvan.smsproxy.SmsFragment"
|
|
android:id="@+id/sms_fragment"
|
|
android:layout_weight="2"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent" />
|
|
|
|
</androidx.core.widget.NestedScrollView>
|