我试着制作一个文本视图而不是上面的文本视图我已经尝试了文本对齐但没有成功我可以通过添加大量的填充来实现这一点但我不想使用填充因为我在屏幕尺寸的android变种中遇到其他问题。我将发布我想要做的图像,然后发布我有的xml代码。看看有些帮助在这里谢谢。图像(我试图用文本android /设计覆盖上面的区域,说忙碌的发展,因为现在黑色文本视图只是推动上面的文本视图是我的黑色栏是我希望它只是覆盖,但保持在同一位置)http://imgur.com/ebgNTNk
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<TextView
android:id="@+id/org_name"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="4dp"
android:layout_marginLeft="4dp"
android:layout_marginRight="4dp"
android:gravity="center_horizontal"
android:paddingTop="42dp"
android:paddingBottom="42dp"
android:background="@drawable/dashboard_business_image"
android:textColor="@color/busy_black"
android:textStyle="bold"
android:textAppearance="?android:attr/textAppearanceMedium">
</TextView>
<TextView
android:id="@+id/project_name"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="4dp"
android:layout_below="@id/org_name"
android:layout_marginRight="4dp"
android:gravity="center_horizontal"
android:layout_gravity="bottom"
android:paddingTop="2dp"
android:paddingBottom="2dp"
android:background="@color/busy_translucent_black"
android:textColor="@color/busy_white"
android:textStyle="normal"
android:textAppearance="?android:attr/textAppearanceSmall"
android:visibility="gone">
</TextView>
</RelativeLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:orientation="vertical">
<include layout="@layout/dashboard_clock_in_button" />
<include layout="@layout/dashboard_clock_out_button" />
<include layout="@layout/dashboard_paused_button" />
<ListView
android:id="@+id/action_list"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="4dp"
android:layout_marginRight="4dp"
android:divider="@color/busy_divider_color"
android:dividerHeight="0dp">
</ListView>
</LinearLayout>
<TextView
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_marginLeft="4dp"
android:layout_marginRight="4dp"
android:layout_weight="0"
android:gravity="center_horizontal"
android:paddingTop="32dp"
android:paddingBottom="32dp"
android:background="@color/busy_white"
android:textColor="@color/busy_black"
android:textStyle="bold"
android:textAppearance="?android:attr/textAppearanceMedium" />
</LinearLayout>
答案 0 :(得分:3)
阅读此内容,您似乎希望project_name
视图覆盖org_name
视图。您可以通过对齐视图的底部来完成此操作。
更改此行:
android:layout_below="@id/org_name"
对此:
android:layout_alignBottom="@id/org_name"
这将对齐两个视图的底部,有效地将project_name
放在org_name
视图的顶部。
答案 1 :(得分:0)
它们不重叠的原因是第二个TextView中的android:layout_below="@id/org_name"
。如果你删除它,我认为它应该按你想要的那样工作。如果没有,您可能想尝试FrameLayout而不是RelativeLayout。