diff options
author | cyBerta <cyberta@riseup.net> | 2021-07-29 18:23:55 +0200 |
---|---|---|
committer | cyBerta <cyberta@riseup.net> | 2021-11-14 19:22:16 +0100 |
commit | 05934715fec39cb22937e82acecd4add4fccd724 (patch) | |
tree | 21dc69fba378300d565a58b9b11e0c68bd6b2523 /app/src/main/res | |
parent | ff427f2863dd2c3c46030968f4d034553f09d0bf (diff) |
implement location load indicator in gateway selection cell
Diffstat (limited to 'app/src/main/res')
-rw-r--r-- | app/src/main/res/layout/v_select_text_list_item.xml | 19 |
1 files changed, 6 insertions, 13 deletions
diff --git a/app/src/main/res/layout/v_select_text_list_item.xml b/app/src/main/res/layout/v_select_text_list_item.xml index 07187016..36075424 100644 --- a/app/src/main/res/layout/v_select_text_list_item.xml +++ b/app/src/main/res/layout/v_select_text_list_item.xml @@ -19,20 +19,13 @@ tools:visibility="visible" /> - <androidx.appcompat.widget.AppCompatTextView + <se.leap.bitmaskclient.base.views.LocationIndicator android:id="@+id/quality" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:textAppearance="?android:attr/textAppearanceListItem" - android:gravity="center_vertical" - android:paddingStart="@dimen/standard_margin" - android:paddingLeft="@dimen/standard_margin" - android:paddingEnd="@dimen/standard_margin" - android:paddingRight="@dimen/standard_margin" - android:minHeight="?android:attr/listPreferredItemHeightSmall" - android:layout_toLeftOf="@id/checked_icon" - android:layout_toStartOf="@id/checked_icon" - tools:text="GOOD" + android:layout_width="56dp" + android:layout_height="match_parent" + android:layout_toLeftOf="@+id/checked_icon" + android:layout_toStartOf="@+id/checked_icon" + tools:visibility="visible" /> <androidx.appcompat.widget.AppCompatTextView |