android:layout_alignParentBottom,android:layout_alignParentRight无法正确定位

时间:2017-07-31 10:51:00

标签: android android-layout

我正在学习google android.so帮我解决这个问题。我正在尝试将文本放在右下角。但它不能正常工作。感谢所有人的投入。

    <?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="com.example.dredd.happybirthday.MainActivity">

        <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="happy birthday srikanth"
        />

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_alignParentRight="true"
        android:text="from dayakar "
        />

    <ImageView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/android"
         />
</android.support.constraint.ConstraintLayout>

screenshot

2 个答案:

答案 0 :(得分:0)

尝试此用户RelativeLayout更改您的layout,如下面的代码

<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent">
      <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="happy birthday srikanth"
        />

      <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_alignParentRight="true"
        android:text="from dayakar "
        />

      <ImageView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/disha"
        />
</RelativeLayout>

答案 1 :(得分:0)

试试这个:

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:layout_alignParentRight="true"
    android:layout_constraintRight_toRightOf="parent"
    android:layout_constraintBottom_toBottomOf="parent"
    android:text="from dayakar "
    />