のwrap_contentにSwipeRefreshLayout
子ListView
を含むものを設定しようとしています。DialogFragment
ListViewにitem が 1 つしかない場合でも、ダイアログは常にウィンドウの高さを埋めているため、実際にDialogをその子の高さでラップするようにします。
レイアウト :
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<RelativeLayout
android:id="@+id/footer"
android:layout_alignParentBottom="true"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="@color/devider_line"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:text="@string/myButton" />
</RelativeLayout>
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
android:layout_above="@id/footer"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ListView
android:id="@+id/listview"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
</RelativeLayout>
結果 :
ListView項目に応じてDialogFragmentウィンドウの高さを調整する必要があります。常にウィンドウの高さを埋める必要はありません。
SwipeRefreshLayout
または のいずれかを作成してListView
、コンテンツ (項目) をラップします。
私はそれを行うために多くの方法を試しましたが、何もうまくいきませんでした。
どうすればこれを達成できますか?
アップデート :
自体は、ウィンドウの高さSwipeRefreshLayout
全体を埋め、無視しています。wrap_content
私は交換ListView
しRecyclerView
、RecyclerView
コンテンツの高さをラッピングしています。これは良いことです。しかし、依然としてDialogFragmentがすべてのWindowをカバーするように高さを埋めSwipeRefreshLayout
ています。
ダイアログの高さを次のように設定していますwrap_content
:
@Override
public void onResume() {
getDialog().getWindow().setLayout(WindowManager.LayoutParams.MATCH_PARENT, WindowManager.LayoutParams.WRAP_CONTENT);
super.onResume();
}
ここに list_item.xml があります:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<LinearLayout
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="18dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<LinearLayout
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="0.4"
android:gravity="start"
android:orientation="horizontal"
android:weightSum="1">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="start"
android:text="@string/default_text" />
</LinearLayout>
<LinearLayout
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="0.6"
android:gravity="end"
android:orientation="horizontal"
android:weightSum="1">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/default_text"
android:textAlignment="center" />
</LinearLayout>
</LinearLayout>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="1dp"
android:layout_below="@+id/container"
android:background="@color/devider_color" />
</RelativeLayout>
更新 2:
それを使用RecyclerView
してラップするとLinearLayout
、wrap_contentが機能します。
<?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="wrap_content">
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#00ffff">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical">
<androidx.recyclerview.widget.RecyclerView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#ff00ff" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/myButton" />
</LinearLayout>
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
</LinearLayout>
しかし、まだSwipeRefreshLayout
高さを埋めています。