簡體   English   中英

在LinearLayout的左下角對齊視圖,但將其放在頂部

[英]Align view on bottom-left of LinearLayout, but keep it on top

如何在線性布局上對齊視圖?

我希望藍色圓圈看起來像這樣:(在LinearLayout的左下角,但保持在白色LinearLayout邊框之上)

我想要的是

但是,我嘗試執行的方式如下所示:

我不想要的

布局xml:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    xmlns:Font="http://schemas.android.com/apk/res-auto"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        android:id="@+id/notificationItemLayout"
        android:background="@drawable/layout_border"
        android:layout_marginLeft="20dp">

    <com.mmp.customview.DefaultTextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        Font:isLight="true"
        android:id="@+id/notificationDataTextView"
        tools:text="Message log 1/7/2017"
        android:layout_marginTop="8dp" />

        <com.mmp.customview.DefaultTextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            Font:isLight="true"
            android:textSize="17sp"
            android:textColor="#A9D3E7"
            android:id="@+id/notificationTextView"
            tools:text="Message log 1/7/2017"
            android:paddingTop="15dp"
            android:paddingLeft="15dp"
            android:paddingRight="15dp"
            android:paddingBottom="10dp"
            android:layout_marginTop="8dp" />

    </LinearLayout>

    <com.mmp.customview.NotificationIconView
        android:layout_width="50dp"
        android:layout_height="50dp"
        android:layout_alignBottom="@+id/notificationItemLayout"
        android:layout_alignLeft="@+id/notificationItemLayout"
        android:layout_centerHorizontal="true"
        android:id="@+id/notificationIcon" />

</RelativeLayout>

我想您需要將LinearLayout和IconView放入FrameLayout中:

<FrameLayout ...>
 <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        android:id="@+id/notificationItemLayout"
        android:background="@drawable/layout_border"
        android:layout_marginLeft="20dp">

    <com.mmp.customview.DefaultTextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        Font:isLight="true"
        android:id="@+id/notificationDataTextView"
        tools:text="Message log 1/7/2017"
        android:layout_marginTop="8dp" />

        <com.mmp.customview.DefaultTextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            Font:isLight="true"
            android:textSize="17sp"
            android:textColor="#A9D3E7"
            android:id="@+id/notificationTextView"
            tools:text="Message log 1/7/2017"
            android:paddingTop="15dp"
            android:paddingLeft="15dp"
            android:paddingRight="15dp"
            android:paddingBottom="10dp"
            android:layout_marginTop="8dp" />

    </LinearLayout>

    <com.mmp.customview.NotificationIconView
        android:layout_width="50dp"
        android:layout_height="50dp"
        android:layout_alignBottom="@+id/notificationItemLayout"
        android:layout_alignLeft="@+id/notificationItemLayout"
        android:layout_centerHorizontal="true"
        android:id="@+id/notificationIcon" />
</FrameLayout>

IconView將覆蓋LinearLayout。 比將IconView對齊到左下方,並在LinearLayout的左側添加填充。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM