gpt4 book ai didi

Android 固定布局 3/4 + 1/4

转载 作者:行者123 更新时间:2023-11-29 17:53:34 25 4
gpt4 key购买 nike

我正在为 android 布局设置而苦苦挣扎。无论内容是什么,我都想保持相同的固定大小,并希望在中心显示所有内容!

---------------------------------
- - -
- - -
- 3/4 (center) - 1/4 -
- - (ct) -
- - -
- - -
---------------------------------

这是我的 layout.xml 代码,但它不起作用:

<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_centerInParent="true"
android:orientation="horizontal"
android:weightSum="1" >

<VideoView
android:id="@+id/videoView1"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:layout_gravity="center"
android:layout_weight=".25" />

<TextView
android:id="@+id/textView1"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:layout_gravity="center"
android:layout_weight=".75"
android:freezesText="false"
android:includeFontPadding="false"
android:scrollHorizontally="false"
android:selectAllOnFocus="false"
android:text="@string/Runstring" />
</LinearLayout>

编辑:

我尝试了下面的一些代码并且有经验:如果我使 @string/Runstring = 只是一个“a”或者如果我使它“............LONG STRING…………”它正在改变整个布局!这不是保持 3/4 + 1/4 的比例!这是为什么?

最佳答案

改变

android:layout_width="fill_parent"

android:layout_width="0dp"

layout_weight 将在宽度设置为 0dp 的情况下工作。您的布局将如下所示:

 <LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_centerInParent="true"
android:orientation="horizontal"
android:weightSum="4" >

<VideoView
android:id="@+id/videoView1"
android:layout_height="wrap_content"
android:layout_width="0dp"
android:layout_gravity="center"
android:layout_weight="3" />

<TextView
android:id="@+id/textView1"
android:layout_height="wrap_content"
android:layout_width="0dp"
android:layout_gravity="center"
android:layout_weight="1"
android:freezesText="false"
android:includeFontPadding="false"
android:scrollHorizontally="false"
android:selectAllOnFocus="false"
android:text="@string/Runstring" />
</LinearLayout>

关于Android 固定布局 3/4 + 1/4,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21253083/

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