Skip to content

Commit 039385e

Browse files
committed
format
1 parent 9ef6eee commit 039385e

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
lines changed

app/src/main/java/org/ranobe/ranobe/ui/details/Details.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
package org.ranobe.ranobe.ui.details;
22

33
import android.content.Intent;
4-
import android.net.Uri;
54
import android.os.Bundle;
65
import android.view.LayoutInflater;
76
import android.view.View;

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
<androidx.recyclerview.widget.RecyclerView
99
android:id="@+id/novel_list"
1010
android:layout_width="match_parent"
11-
android:layout_height="match_parent" />
11+
android:layout_height="match_parent"
12+
android:paddingHorizontal="10dp" />
1213

1314
<com.google.android.material.progressindicator.LinearProgressIndicator
1415
android:id="@+id/progress"

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
xmlns:tools="http://schemas.android.com/tools"
44
android:layout_width="match_parent"
55
android:layout_height="match_parent"
6-
android:layout_marginTop="20dp"
76
tools:context=".ui.explore.Explore">
87

98
<TextView

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
33
xmlns:app="http://schemas.android.com/apk/res-auto"
4-
android:layout_width="120dp"
4+
android:layout_width="100dp"
55
android:layout_height="wrap_content"
66
android:layout_marginBottom="15dp">
77

@@ -18,8 +18,8 @@
1818

1919
<ImageView
2020
android:id="@+id/novel_cover"
21-
android:layout_width="120dp"
22-
android:layout_height="180dp"
21+
android:layout_width="100dp"
22+
android:layout_height="150dp"
2323
android:adjustViewBounds="true"
2424
android:contentDescription="@string/image"
2525
android:scaleType="centerCrop" />

0 commit comments

Comments
 (0)