Я новичок в Android Studios, и мои TextViews не будут располагаться рядом друг с другом, вместо этого один поверх другого. Я действительно смущен тем, что я сделал неправильно.
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:orientation="horizontal" />
<TextView
android:layout_width="wrap_content"
android:layout_height="35dp"
android:text="@string/already_registered"/>
<TextView
android:id="@+id/textview_login"
android:layout_width="wrap_content"
android:layout_height="35dp"
android:paddingLeft="10dp"
android:textStyle="bold"
android:textColor="#ECAB71"
android:textSize="16sp"
android:text="@string/login"/>
</LinearLayout>