Layout_alignParentRight等不起作用

时间:2018-12-27 05:59:43

标签: android

我只是想通过制作生日贺卡应用程序在Udacity上做第一堂应用程序制作课程。它要求我在生日贺卡的右下角放置“ 来自yourName ”。我尝试使用android:layout_alignParentRightandroid:layout_alignParentBottom,但没有任何改变。

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Happy Birthday friendName!"/>
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_alignParentBottom="true"
        android:text="From yourName!"
        android:layout_alignParentEnd="true" />

    <ImageView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:src="@drawable/androidparty" />

3 个答案:

答案 0 :(得分:0)

如果要使用android:layout_alignParentRightandroid:layout_alignParentBottom,则

使用RelativeLayout作为根布局

示例代码

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

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Happy Birthday friendName!"/>
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentRight="true"
            android:layout_alignParentBottom="true"
            android:text="From yourName!"
            android:layout_alignParentEnd="true" />

        <ImageView
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:src="@drawable/androidparty" />
</RelativeLayout>

答案 1 :(得分:0)

当父级布局为 android:layout_alignParentBottom 时使用的android:layout_alignParentRightRelativeLayout属性都不能与ConstraintLayout

一起使用

只需将您的根目录布局更改为 RelativeLayout 即可

示例代码

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

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Happy Birthday friendName!"/>
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentRight="true"
            android:layout_alignParentBottom="true"
            android:text="From yourName!"
            android:layout_alignParentEnd="true" />

        <ImageView
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:src="@drawable/androidparty" />
</RelativeLayout>

答案 2 :(得分:0)

android:layout_alignParentRightandroid:layout_alignParentBottom与RelativeLayout一起使用

对于约束布局,您必须使用

app:layout_constraintRight_toRightOf="parent"