parent
6c43376443
commit
174661a375
@ -0,0 +1,5 @@ |
|||||||
|
package com.community.pocket.ui.main.ui.forum; |
||||||
|
|
||||||
|
public interface FormLoad { |
||||||
|
void loadForumNew(Long page, String title); |
||||||
|
} |
@ -1,25 +1,23 @@ |
|||||||
<?xml version="1.0" encoding="utf-8"?> |
<?xml version="1.0" encoding="utf-8"?> |
||||||
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" |
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" |
||||||
|
xmlns:app="http://schemas.android.com/apk/res-auto" |
||||||
xmlns:tools="http://schemas.android.com/tools" |
xmlns:tools="http://schemas.android.com/tools" |
||||||
android:layout_width="match_parent" |
android:layout_width="match_parent" |
||||||
android:layout_height="match_parent" |
android:layout_height="match_parent" |
||||||
tools:context=".ui.main.ui.forum.my.ForumMyFragment"> |
tools:context=".ui.main.ui.forum.my.ForumMyFragment"> |
||||||
|
|
||||||
<androidx.core.widget.NestedScrollView |
<androidx.appcompat.widget.SearchView |
||||||
|
android:id="@+id/search" |
||||||
android:layout_width="match_parent" |
android:layout_width="match_parent" |
||||||
android:layout_height="match_parent" |
android:layout_height="wrap_content" |
||||||
tools:ignore="UselessParent"> |
app:layout_constraintStart_toStartOf="parent" |
||||||
|
app:layout_constraintTop_toTopOf="parent" /> |
||||||
|
|
||||||
<LinearLayout |
<LinearLayout |
||||||
android:id="@+id/post_layout" |
android:id="@+id/post_layout" |
||||||
android:layout_width="match_parent" |
android:layout_width="match_parent" |
||||||
android:layout_height="wrap_content" |
android:layout_height="wrap_content" |
||||||
android:orientation="vertical"> |
android:orientation="vertical" |
||||||
|
app:layout_constraintStart_toStartOf="parent" |
||||||
<androidx.appcompat.widget.SearchView |
app:layout_constraintTop_toBottomOf="@id/search" /> |
||||||
android:id="@+id/search" |
</androidx.constraintlayout.widget.ConstraintLayout> |
||||||
android:layout_width="match_parent" |
|
||||||
android:layout_height="match_parent" /> |
|
||||||
</LinearLayout> |
|
||||||
</androidx.core.widget.NestedScrollView> |
|
||||||
</FrameLayout> |
|
@ -1,25 +1,23 @@ |
|||||||
<?xml version="1.0" encoding="utf-8"?> |
<?xml version="1.0" encoding="utf-8"?> |
||||||
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" |
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" |
||||||
|
xmlns:app="http://schemas.android.com/apk/res-auto" |
||||||
xmlns:tools="http://schemas.android.com/tools" |
xmlns:tools="http://schemas.android.com/tools" |
||||||
android:layout_width="match_parent" |
android:layout_width="match_parent" |
||||||
android:layout_height="match_parent" |
android:layout_height="match_parent" |
||||||
tools:context=".ui.main.ui.forum.news.ForumNewFragment"> |
tools:context=".ui.main.ui.forum.news.ForumNewFragment"> |
||||||
|
|
||||||
<androidx.core.widget.NestedScrollView |
<androidx.appcompat.widget.SearchView |
||||||
|
android:id="@+id/search" |
||||||
android:layout_width="match_parent" |
android:layout_width="match_parent" |
||||||
android:layout_height="match_parent" |
android:layout_height="wrap_content" |
||||||
tools:ignore="UselessParent"> |
app:layout_constraintStart_toStartOf="parent" |
||||||
|
app:layout_constraintTop_toTopOf="parent" /> |
||||||
|
|
||||||
<LinearLayout |
<LinearLayout |
||||||
android:id="@+id/post_layout" |
android:id="@+id/post_layout" |
||||||
android:layout_width="match_parent" |
android:layout_width="match_parent" |
||||||
android:layout_height="wrap_content" |
android:layout_height="wrap_content" |
||||||
android:orientation="vertical"> |
android:orientation="vertical" |
||||||
|
app:layout_constraintStart_toStartOf="parent" |
||||||
<androidx.appcompat.widget.SearchView |
app:layout_constraintTop_toBottomOf="@id/search" /> |
||||||
android:id="@+id/search" |
</androidx.constraintlayout.widget.ConstraintLayout> |
||||||
android:layout_width="match_parent" |
|
||||||
android:layout_height="37dp" /> |
|
||||||
</LinearLayout> |
|
||||||
</androidx.core.widget.NestedScrollView> |
|
||||||
</FrameLayout> |
|
Loading…
Reference in new issue