如何在线性布局中将框架布局放在底部
How to place frame layout in bottom in the linear layout
我正在 Android 中创建自定义键盘。键盘视图将采用框架布局。我想把这个框架布局放在线性布局的底部。请为此提供一些想法。
<androidx.appcompat.widget.LinearLayoutCompat xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Testing"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Testing 2"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Testing 3"/>
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:gravity="bottom|end"
android:layout_gravity="bottom">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Custom Keyboard"/>
</FrameLayout>
</androidx.appcompat.widget.LinearLayoutCompat>
最简单的方法是在最后一个 TextView
和 FrameLayout
之间放置一个属性为 android:layout_weight = "1"
的 View
...
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Testing 3"/>
<View
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1" />
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:gravity="bottom|end"
android:layout_gravity="bottom">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Custom Keyboard"/>
</FrameLayout>
...
无论如何,在这种情况下我建议使用 Relative Layout or, better, Constraint Layout
您可以为您的视图尝试约束布局:
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true">
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent">
<TextView
android:id="@+id/txt_1"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:text="SomeText 1"
android:layout_margin="5dp"
android:textColor="@android:color/black"
android:textSize="18sp"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent"/>
<TextView
android:id="@+id/txt_2"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:text="SomeText 2"
android:layout_margin="5dp"
android:textColor="@android:color/black"
android:textSize="18sp"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toBottomOf="@id/txt_1"/>
<TextView
android:id="@+id/txt_3"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:text="SomeText 3"
android:layout_margin="5dp"
android:textColor="@android:color/black"
android:textSize="18sp"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toBottomOf="@id/txt_2"/>
<FrameLayout
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_margin="5dp"
app:layout_constraintTop_toBottomOf="@+id/txt_3"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintBottom_toBottomOf="parent">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="keyboard"/>
</FrameLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
</ScrollView>
您可以将父级用作线性布局或滚动视图。只需替换为滚动视图。
我正在 Android 中创建自定义键盘。键盘视图将采用框架布局。我想把这个框架布局放在线性布局的底部。请为此提供一些想法。
<androidx.appcompat.widget.LinearLayoutCompat xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Testing"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Testing 2"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Testing 3"/>
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:gravity="bottom|end"
android:layout_gravity="bottom">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Custom Keyboard"/>
</FrameLayout>
</androidx.appcompat.widget.LinearLayoutCompat>
最简单的方法是在最后一个 TextView
和 FrameLayout
android:layout_weight = "1"
的 View
...
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Testing 3"/>
<View
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1" />
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:gravity="bottom|end"
android:layout_gravity="bottom">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Custom Keyboard"/>
</FrameLayout>
...
无论如何,在这种情况下我建议使用 Relative Layout or, better, Constraint Layout
您可以为您的视图尝试约束布局:
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true">
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent">
<TextView
android:id="@+id/txt_1"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:text="SomeText 1"
android:layout_margin="5dp"
android:textColor="@android:color/black"
android:textSize="18sp"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent"/>
<TextView
android:id="@+id/txt_2"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:text="SomeText 2"
android:layout_margin="5dp"
android:textColor="@android:color/black"
android:textSize="18sp"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toBottomOf="@id/txt_1"/>
<TextView
android:id="@+id/txt_3"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:text="SomeText 3"
android:layout_margin="5dp"
android:textColor="@android:color/black"
android:textSize="18sp"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toBottomOf="@id/txt_2"/>
<FrameLayout
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_margin="5dp"
app:layout_constraintTop_toBottomOf="@+id/txt_3"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintBottom_toBottomOf="parent">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="keyboard"/>
</FrameLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
</ScrollView>
您可以将父级用作线性布局或滚动视图。只需替换为滚动视图。