Skip to content

Commit c1af432

Browse files
committed
Supporting new tablet sizes
1 parent 59459c3 commit c1af432

File tree

3 files changed

+99
-0
lines changed

3 files changed

+99
-0
lines changed
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
3+
xmlns:app="http://schemas.android.com/apk/res-auto"
4+
xmlns:tools="http://schemas.android.com/tools"
5+
android:id="@+id/cl_background"
6+
android:layout_width="match_parent"
7+
android:layout_height="match_parent"
8+
android:background="#FFFFFF">
9+
10+
<ImageView
11+
android:id="@+id/iv_file"
12+
android:layout_width="38dp"
13+
android:layout_height="38dp"
14+
android:layout_marginStart="8dp"
15+
android:layout_marginLeft="8dp"
16+
android:layout_marginTop="8dp"
17+
android:layout_marginBottom="8dp"
18+
app:layout_constraintBottom_toBottomOf="parent"
19+
app:layout_constraintStart_toStartOf="parent"
20+
app:layout_constraintTop_toTopOf="parent" />
21+
22+
<TextView
23+
android:id="@+id/tv_file_absolute_path"
24+
android:layout_width="680dp"
25+
android:layout_height="wrap_content"
26+
android:layout_marginStart="8dp"
27+
android:layout_marginLeft="8dp"
28+
android:text="Example"
29+
android:textSize="28sp"
30+
app:layout_constraintBottom_toBottomOf="@+id/iv_file"
31+
app:layout_constraintStart_toEndOf="@+id/iv_file"
32+
app:layout_constraintTop_toTopOf="@+id/iv_file" />
33+
</android.support.constraint.ConstraintLayout>
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
3+
xmlns:app="http://schemas.android.com/apk/res-auto"
4+
xmlns:tools="http://schemas.android.com/tools"
5+
android:id="@+id/cl_background"
6+
android:layout_width="match_parent"
7+
android:layout_height="match_parent"
8+
android:background="#FFFFFF">
9+
10+
<ImageView
11+
android:id="@+id/iv_file"
12+
android:layout_width="38dp"
13+
android:layout_height="38dp"
14+
android:layout_marginStart="8dp"
15+
android:layout_marginLeft="8dp"
16+
android:layout_marginTop="8dp"
17+
android:layout_marginBottom="8dp"
18+
app:layout_constraintBottom_toBottomOf="parent"
19+
app:layout_constraintStart_toStartOf="parent"
20+
app:layout_constraintTop_toTopOf="parent" />
21+
22+
<TextView
23+
android:id="@+id/tv_file_absolute_path"
24+
android:layout_width="720dp"
25+
android:layout_height="wrap_content"
26+
android:layout_marginStart="8dp"
27+
android:layout_marginLeft="8dp"
28+
android:text="Example"
29+
android:textSize="28sp"
30+
app:layout_constraintBottom_toBottomOf="@+id/iv_file"
31+
app:layout_constraintStart_toEndOf="@+id/iv_file"
32+
app:layout_constraintTop_toTopOf="@+id/iv_file" />
33+
</android.support.constraint.ConstraintLayout>
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
3+
xmlns:app="http://schemas.android.com/apk/res-auto"
4+
xmlns:tools="http://schemas.android.com/tools"
5+
android:id="@+id/cl_background"
6+
android:layout_width="match_parent"
7+
android:layout_height="match_parent"
8+
android:background="#FFFFFF">
9+
10+
<ImageView
11+
android:id="@+id/iv_file"
12+
android:layout_width="38dp"
13+
android:layout_height="38dp"
14+
android:layout_marginStart="8dp"
15+
android:layout_marginLeft="8dp"
16+
android:layout_marginTop="8dp"
17+
android:layout_marginBottom="8dp"
18+
app:layout_constraintBottom_toBottomOf="parent"
19+
app:layout_constraintStart_toStartOf="parent"
20+
app:layout_constraintTop_toTopOf="parent" />
21+
22+
<TextView
23+
android:id="@+id/tv_file_absolute_path"
24+
android:layout_width="800dp"
25+
android:layout_height="wrap_content"
26+
android:layout_marginStart="8dp"
27+
android:layout_marginLeft="8dp"
28+
android:text="Example"
29+
android:textSize="28sp"
30+
app:layout_constraintBottom_toBottomOf="@+id/iv_file"
31+
app:layout_constraintStart_toEndOf="@+id/iv_file"
32+
app:layout_constraintTop_toTopOf="@+id/iv_file" />
33+
</android.support.constraint.ConstraintLayout>

0 commit comments

Comments
 (0)