私はthis.iで私を助けgoogle android.soを学んでいます右下のテキストを配置しようとしています。android:layout_alignParentBottom、android:layout_alignParentRight正しく配置されていません
<?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>
は相対的なレイアウト – AbuQauod
利用のLinearLayoutまたは相対レイアウト –
に入れますどうやって 私はそれを行うことができます今、私はandorid studioを使用していますconstraintlayout –