gpt4 book ai didi

android - FrameLayout 里面的FrameLayout 和定位FrameLayout 右边的父FrameLayout?

转载 作者:太空狗 更新时间:2023-10-29 14:24:23 24 4
gpt4 key购买 nike

我正在尝试创建一个包含子 Framelayout 的 Framelayout,我无法将子 Framelayout 定位到父 Framelayout 的右侧!

我尝试使用 android:foregroundGravity="right"android:layout_weight="1"

 <?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/listView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:layout_weight="1">

<com.example.ListViewActivity
android:id="@+id/list_view"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
</com.example.ListViewActivity>

<FrameLayout
android:id="@+id/indexRight"
android:layout_width="36dp"
android:layout_height="fill_parent"
android:layout_gravity="left"
android:background="@color/white"
android:orientation="vertical" >

</FrameLayout>

</FrameLayout>

屏幕截图:enter image description here

如上图所示,我想将白色的 FrameLayout 移到右边。

谢谢

最佳答案

来自Android DocumentationFrameLayout

FrameLayout is designed to block out an area on the screen to display a single item

您应该使用 LinearLayoutRelativeLayout 作为根,除非您只想在任何给定时间显示一个子项。我假设 com.example.ListViewActivity 是您实现的自定义 View ,而不是实际的 Activity

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/listView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal">

<com.example.ListViewActivity
android:id="@+id/list_view"
android:layout_width="0dp"
android:layout_height="fill_parent"
android:layout_weight="1">
</com.example.ListViewActivity>

<!-- This FrameLayout will be located on the right side, with the ListView on its left side -->
<FrameLayout
android:id="@+id/indexRight"
android:layout_width="36dp"
android:layout_height="fill_parent"
android:background="@color/white">
<!-- SINGLE child here -->
</FrameLayout>
</LinearLayout>

关于android - FrameLayout 里面的FrameLayout 和定位FrameLayout 右边的父FrameLayout?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13802348/

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