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"?> |
||||
<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" |
||||
android:layout_width="match_parent" |
||||
android:layout_height="match_parent" |
||||
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_height="match_parent" |
||||
tools:ignore="UselessParent"> |
||||
android:layout_height="wrap_content" |
||||
app:layout_constraintStart_toStartOf="parent" |
||||
app:layout_constraintTop_toTopOf="parent" /> |
||||
|
||||
<LinearLayout |
||||
android:id="@+id/post_layout" |
||||
android:layout_width="match_parent" |
||||
android:layout_height="wrap_content" |
||||
android:orientation="vertical"> |
||||
|
||||
<androidx.appcompat.widget.SearchView |
||||
android:id="@+id/search" |
||||
android:layout_width="match_parent" |
||||
android:layout_height="match_parent" /> |
||||
</LinearLayout> |
||||
</androidx.core.widget.NestedScrollView> |
||||
</FrameLayout> |
||||
android:orientation="vertical" |
||||
app:layout_constraintStart_toStartOf="parent" |
||||
app:layout_constraintTop_toBottomOf="@id/search" /> |
||||
</androidx.constraintlayout.widget.ConstraintLayout> |
@ -1,25 +1,23 @@ |
||||
<?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" |
||||
android:layout_width="match_parent" |
||||
android:layout_height="match_parent" |
||||
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_height="match_parent" |
||||
tools:ignore="UselessParent"> |
||||
android:layout_height="wrap_content" |
||||
app:layout_constraintStart_toStartOf="parent" |
||||
app:layout_constraintTop_toTopOf="parent" /> |
||||
|
||||
<LinearLayout |
||||
android:id="@+id/post_layout" |
||||
android:layout_width="match_parent" |
||||
android:layout_height="wrap_content" |
||||
android:orientation="vertical"> |
||||
|
||||
<androidx.appcompat.widget.SearchView |
||||
android:id="@+id/search" |
||||
android:layout_width="match_parent" |
||||
android:layout_height="37dp" /> |
||||
</LinearLayout> |
||||
</androidx.core.widget.NestedScrollView> |
||||
</FrameLayout> |
||||
android:orientation="vertical" |
||||
app:layout_constraintStart_toStartOf="parent" |
||||
app:layout_constraintTop_toBottomOf="@id/search" /> |
||||
</androidx.constraintlayout.widget.ConstraintLayout> |
Loading…
Reference in new issue