gpt4 book ai didi

android - 对齐选项卡式布局的 TextView 底部

转载 作者:行者123 更新时间:2023-11-30 04:26:43 28 4
gpt4 key购买 nike

我正在尝试将 TextView 与选项卡布局的底部对齐,以便它与屏幕底部齐平。它基本上相当于一个浏览器状态栏,所以它只有几个像素高,里面有一些文本。这是我目前所拥有的:

<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="0dp"

<TabWidget
android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:padding="0dp"
android:background="@drawable/tab_bg_selector"
/>
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="0dp"
/>
<TextView
android:id="@+id/status"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="Last Updated"
android:layout_alignParentBottom="true"
android:background="#cccccc"
/>
</LinearLayout>
<RelativeLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="10dp"
android:layout_alignParentBottom="true">
<TextView
android:id="@+id/status"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#cccccc"
/>
</RelativeLayout>
</TabHost>

最佳答案

您已将 TextView 的高度和宽度设置为“fill_parent”。这意味着 View 本身的底部位于底部,但 View 中的文本可能位于其布局的顶部。您应该将高度设置为“wrap_content”。由于 View 的高度仅达到所需的高度,因此它应该出现在其布局的底部。

关于android - 对齐选项卡式布局的 TextView 底部,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8365416/

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