Я пытаюсь сделать ListView с прогресс бар точно как на картинке нижеПоказать прогресс бар рядом с текстом ListView
Я использование android:layout_toRightOf
для отображения Progressbar рядом с Pro-XXX-XXX
, но он отображается под текстом.
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView android:id="@+id/ListProject"
android:textStyle="bold"
android:textColor="@color/black"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
<ProgressBar
android:id="@+id/downloadProgressBar"
style="?android:attr/progressBarStyleHorizontal"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@+id/ListProject" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@color/blue"
android:id="@+id/ListTimeIn"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@color/blue"
android:layout_toLeftOf="@+id/ListTimeIn"
android:id="@+id/ListTimeOut"/>
<TextView android:id="@+id/ListDescription"
android:layout_width="wrap_content"
android:textColor="@color/blue"
android:layout_height="wrap_content"/>
</LinearLayout>
Изменения в RelativeLayout
@Chintan ответить
Итак, в чем проблема? – Sree
@Sree Я хочу показать индикатор выполнения рядом с Pro-XXX –
Попробуйте изменить LinearLayout на относительную компоновку. – TdSoft