gpt4 book ai didi

安卓布局元素

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

我正在尝试制作如下所示的 Android 布局。我有几个问题:

1 - FB 用于发帖的元素叫什么?也就是说,它看起来不像 TextView ,但该元素看起来像是用分隔线分隔每个帖子。此外,文本样式因人名和发帖时间而异。我想复制这个(减去图片),但我找不到合适的 UI 元素。

  1. 底部的元素叫什么?这就像一个静态菜单。 IE,它与菜单相同,但无需按“菜单”即可访问它,它始终显示在页面上。

最后,是否有关于如何像市场上的应用程序一样制作漂亮、专业的布局的好教程/示例?我找到的有关布局的教程非常基础。我想了解存在哪些元素、所有属性的含义并查看示例等。到目前为止,我只能看到其他应用程序的功能。我想要一本手册或某种类型的引用手册。

enter image description here

最佳答案

对于“花哨的” TextView ,您可以制作一个承载<RelativeLayout>的线性布局:

<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:layout_weight="0">
<ImageView
android:id="@+id/userPhoto"
android:layout_height="64dip"
android:layout_width="64dip"
/>
<TextView
android:id="@+id/userFullName"
android:layout_height="25dp"
android:layout_width="fill_parent"
android:layout_marginLeft="70dp"
/>
</RelativeLayout>

一旦您有了相对布局,您就可以在其中添加不同的 View ,以创建一种自定义 View 。

至于好的例子,我会看this book .它很容易理解并且对这些事情很有帮助。

关于安卓布局元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8508891/

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