Я начинаю работу с Android. У меня возникли проблемы с получением простой компоновки.
Я хотел бы использовать LinearLayout
для размещения двух TextViews
в одной строке. Один TextView
с левой стороны, другой с правой стороны (аналогично float: left, float: right в CSS).
Возможно ли это, или мне нужно использовать другой ViewGroup
или другое вложение макета для его выполнения?
Вот что я до сих пор:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_height="fill_parent"
android:orientation="horizontal" android:padding="10sp">
<TextView android:id="@+id/mytextview1" android:layout_height="wrap_content" android:text="somestringontheleftSomestring" android:layout_width="wrap_content"/>
<TextView android:id="@+id/mytextview2" android:layout_height="wrap_content" android:ellipsize="end"
android:text="somestringontheright" android:layout_width="wrap_content"/>
</LinearLayout>