gpt4 book ai didi

android - 在屏幕中间设计一个布局android

转载 作者:行者123 更新时间:2023-11-29 01:43:10 24 4
gpt4 key购买 nike

我想设计像下面第三个屏幕的布局。

enter image description here

但是我不知道怎么做。以及如何在任何屏幕尺寸下保持相同的位置?

任何例子对我都有好处。谢谢

最佳答案

尝试使用我下面的代码。

<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_centerInParent="true"android:background="#aaabca"
android:baselineAligned="false"
android:orientation="horizontal"
android:padding="6dp" >

<LinearLayout
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="0.5"
android:orientation="vertical" >

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="19:08"
android:textColor="#111111"
android:textSize="18sp" />

<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="15dp"
android:orientation="horizontal" >

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="0 Sms"
android:textColor="#111111"
android:textSize="18sp" />

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="20dp"
android:text="0 Calls"
android:textColor="#111111"
android:textSize="18sp" />
</LinearLayout>
</LinearLayout>

<RelativeLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="0.5"
android:orientation="vertical" >

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:text="WEDNESDAY \nOCTOBER 15"
android:textColor="#111111"
android:textSize="18sp" />
</RelativeLayout>
</LinearLayout>

关于android - 在屏幕中间设计一个布局android,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23147532/

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