gpt4 book ai didi

java - Android Studio 中的响应式 View

转载 作者:行者123 更新时间:2023-12-02 00:36:03 26 4
gpt4 key购买 nike

friend 们,我正在 Android Studio 上开发一个应用程序,该应用程序将在平板电脑和其他 Android 手机上使用。但我在设计 View (模板)时遇到一些问题。请帮我解决这个问题。

我使用 ConstraintLayout 作为 mainLayout,在其中我使用垂直方向的线性布局。您可以检查代码和输出

如果我使用 listView highet 作为 0dp 那么它不会显示任何内容

  <?xml version="1.0" encoding="utf-8"?>
<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:id="@+id/mainLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">

<TextView
android:id="@+id/textView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:text="@string/my_images_gallary"
android:textSize="36sp"
android:textStyle="bold" />

<ListView
android:id="@+id/listView"
android:layout_width="match_parent"
android:layout_height="0dp">

</ListView>

<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="150dp"
android:text="Button" />
</LinearLayout>

</androidx.constraintlayout.widget.ConstraintLayout>
[Output for the height is 0dp][1]
and if i use the ListView Height as match_parent so the bottom button will not appear.

<?xml version="1.0" encoding="utf-8"?>
<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:id="@+id/mainLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">

<TextView
android:id="@+id/textView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:text="@string/my_images_gallary"
android:textSize="36sp"
android:textStyle="bold" />

<ListView
android:id="@+id/listView"
android:layout_width="match_parent"
android:layout_height="match_parent">

</ListView>

<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="150dp"
android:text="Button" />
</LinearLayout>
</androidx.constraintlayout.widget.ConstraintLayout>

Output for the height is match_parent实际上我希望 listView 应该显示所有滚动内容,并且无论 listview 是否滚动,按钮都应该始终可见。 Expected Output which i am failed to get

最佳答案

想法1:

give fixed height to button and textview. Then use 0dp height to listview

想法2:

Use weight_sum to linear layout and give layout_weight to button,textview and listview as you expect.

关于java - Android Studio 中的响应式 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57973212/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com