diff --git a/briar-android/src/main/res/layout/activity_rss_feed_import.xml b/briar-android/src/main/res/layout/activity_rss_feed_import.xml
index 3997b061bfe42b0b0821936864a16cf1affe7e3f..400c317edad34cf3bac01761d7e0c4deefd1b105 100644
--- a/briar-android/src/main/res/layout/activity_rss_feed_import.xml
+++ b/briar-android/src/main/res/layout/activity_rss_feed_import.xml
@@ -15,7 +15,9 @@
 		android:layout_weight="1"
 		android:gravity="top"
 		android:hint="@string/blogs_rss_feeds_import_hint"
-		android:inputType="textUri"/>
+		android:inputType="textUri"
+		android:paddingLeft="@dimen/margin_large"
+		android:paddingRight="@dimen/margin_large"/>
 
 	<Button
 		android:id="@+id/importButton"
diff --git a/briar-android/src/main/res/layout/list_item_crash.xml b/briar-android/src/main/res/layout/list_item_crash.xml
index f7aa3d0eba54efe6fe1ae3d58390f37c1371e78d..c8a05be0b232ddf69004e8669312b2fd81a2295e 100644
--- a/briar-android/src/main/res/layout/list_item_crash.xml
+++ b/briar-android/src/main/res/layout/list_item_crash.xml
@@ -9,7 +9,9 @@
 	<LinearLayout
 		android:layout_width="match_parent"
 		android:layout_height="wrap_content"
-		android:orientation="horizontal">
+		android:orientation="horizontal"
+		android:paddingLeft="@dimen/margin_large"
+		android:paddingRight="@dimen/margin_large">
 
 		<CheckBox
 			android:id="@+id/include_in_report"
@@ -22,17 +24,19 @@
 			android:layout_height="match_parent"
 			android:layout_marginBottom="@dimen/margin_small"
 			android:gravity="bottom"
-			android:textSize="@dimen/text_size_large"
 			android:textColor="@color/briar_text_primary"
+			android:textSize="@dimen/text_size_large"
 			tools:text="Crash log entry title"/>
 	</LinearLayout>
 
 	<TextView
 		android:id="@+id/content"
-		android:layout_width="wrap_content"
+		android:layout_width="match_parent"
 		android:layout_height="wrap_content"
 		android:layout_marginBottom="@dimen/margin_medium"
+		android:paddingRight="@dimen/margin_large"
 		android:textColor="@color/briar_text_secondary"
+		tools:paddingLeft="@dimen/margin_large"
 		tools:text="Crash log entry value"/>
 
 </LinearLayout>
\ No newline at end of file
diff --git a/briar-android/src/main/res/layout/power_view.xml b/briar-android/src/main/res/layout/power_view.xml
index 707611e1ec765408daedbe49ff1e316cbc7c3d87..7373eec75d1818105e457f403605c2d2448954c8 100644
--- a/briar-android/src/main/res/layout/power_view.xml
+++ b/briar-android/src/main/res/layout/power_view.xml
@@ -12,6 +12,8 @@
 		android:layout_width="0dp"
 		android:layout_height="wrap_content"
 		android:layout_marginTop="8dp"
+		android:paddingLeft="@dimen/margin_large"
+		android:paddingRight="@dimen/margin_large"
 		android:textSize="@dimen/text_size_medium"
 		app:layout_constraintEnd_toEndOf="parent"
 		app:layout_constraintStart_toStartOf="parent"