gpt4 book ai didi

java - Android:如何使按钮的边距相对于屏幕宽度?

转载 作者:行者123 更新时间:2023-11-29 05:49:21 25 4
gpt4 key购买 nike

例如我希望按钮的边距为屏幕宽度的 1/4(以像素为单位),我应该怎么做?我更喜欢在布局 xml 文件中更改某些内容而不是编码。

最佳答案

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:weightSum="4" >

<View
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
/>

<Button
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="2"
/>

<View
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
/>

</LinearLayout>

关于java - Android:如何使按钮的边距相对于屏幕宽度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14561719/

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