0
디스크리트 시크 바 (Discrete Seekbar)의 각 눈금 표시 위에 텍스트를 균등하게 분배하는 방법은 무엇입니까?안드로이드에서 이산 검색 바늘 진드기에 TextView를 고르게 분배하는 방법은 무엇입니까?
이 내가 뭐하는 거지 방법입니다
<SeekBar
android:id="@+id/sb_task_detail_status"
style="@style/Widget.AppCompat.SeekBar.Discrete"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:max="4"
android:progress="0" />
<TableLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:stretchColumns="*"
android:layout_above="@+id/sb_task_detail_status"
android:layout_alignStart="@+id/sb_task_detail_status">
<TableRow
android:id="@+id/statusRow"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/tv_task_status_newly_developed"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_column="1"
android:textColor="@android:color/white"
android:textSize="10sp"
android:text="Newly Developed"/>
<TextView
android:id="@+id/tv_task_status_developed"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_column="2"
android:textSize="10sp"
android:textColor="@android:color/white"
android:text="Developed"/>
<TextView
android:id="@+id/tv_task_status_in_progress"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_column="3"
android:textSize="10sp"
android:textColor="@android:color/white"
android:text="In Progress"/>
<TextView
android:id="@+id/tv_task_status_completed"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_column="4"
android:textSize="10sp"
android:textColor="@android:color/white"
android:text="Completed"/>
<TextView
android:id="@+id/tv_task_status_submitted"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_column="5"
android:textSize="10sp"
android:textColor="@android:color/white"
android:text="Submitted"/>
</TableRow>
</TableLayout>
을 그리고 이것은 내가 가진 결과입니다 : 하나의 텍스트 뷰는 한 번에 볼 수
주 진행에 따라 .
예 시도해 보았지만 작동하지 않았습니다. –
제 편집 된 답변을 확인하십시오 – dalla92
선생님, 저는 이미 이것을 시도했습니다. 각 틱 (점) 표시 위에 텍스트를 표시하고 싶습니다. –