Skip to content

Commit 812f382

Browse files
committed
replacing some xml tags with proper RTL tags
1 parent fa63a69 commit 812f382

3 files changed

Lines changed: 10 additions & 10 deletions

File tree

app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ android {
5151
}
5252

5353
dependencies {
54-
implementation 'com.simplemobiletools:commons:5.20.6'
54+
implementation 'com.simplemobiletools:commons:5.20.7'
5555

5656
kapt 'androidx.room:room-compiler:2.2.2'
5757
implementation 'androidx.room:room-runtime:2.2.2'

app/src/main/res/layout/item_checklist.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,18 +18,18 @@
1818
android:layout_marginLeft="@dimen/medium_margin"
1919
android:layout_marginTop="@dimen/medium_margin"
2020
android:layout_marginRight="@dimen/medium_margin"
21-
android:layout_toLeftOf="@+id/checklist_image"
22-
android:paddingLeft="@dimen/activity_margin"
21+
android:layout_toStartOf="@+id/checklist_image"
22+
android:paddingStart="@dimen/activity_margin"
2323
android:textSize="@dimen/bigger_text_size"
24-
tools:text="Butter"/>
24+
tools:text="Butter" />
2525

2626
<ImageView
2727
android:id="@+id/checklist_image"
2828
android:layout_width="@dimen/checklist_image_size"
2929
android:layout_height="@dimen/checklist_image_size"
30-
android:layout_alignParentRight="true"
30+
android:layout_alignParentEnd="true"
3131
android:layout_centerVertical="true"
3232
android:padding="@dimen/normal_margin"
33-
android:src="@drawable/ic_cross_vector"/>
33+
android:src="@drawable/ic_cross_vector" />
3434

3535
</RelativeLayout>

app/src/main/res/layout/item_checklist_widget.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
android:layout_width="match_parent"
77
android:layout_height="wrap_content"
88
android:layout_centerVertical="true"
9-
android:layout_toLeftOf="@+id/checklist_image"
10-
android:paddingLeft="@dimen/activity_margin"
9+
android:layout_toStartOf="@+id/checklist_image"
10+
android:paddingStart="@dimen/activity_margin"
1111
android:paddingTop="@dimen/medium_margin"
12-
android:paddingRight="@dimen/medium_margin"
12+
android:paddingEnd="@dimen/medium_margin"
1313
android:paddingBottom="@dimen/medium_margin"
1414
android:textSize="@dimen/bigger_text_size"
15-
tools:text="Butter"/>
15+
tools:text="Butter" />

0 commit comments

Comments
 (0)