i_search_result.xml
1.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="wrap_content"
android:padding="10dp"
android:layout_height="wrap_content">
<ImageView android:layout_width="150dp"
android:layout_height="200dp"
android:id="@+id/poster"/>
<LinearLayout
android:layout_marginLeft="16dp"
android:orientation="vertical"
android:layout_width="wrap_content"
android:layout_height="match_parent">
<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content"
style="@style/GeneralTextViewTheme"
android:id="@+id/movieName_tv"
android:textSize="36sp"
android:layout_marginTop="20dp"
android:text="@string/test"/>
<TextView android:layout_width="wrap_content"
android:layout_height="match_parent"
android:textSize="30sp"
android:gravity="center"
style="@style/GeneralTextViewTheme"
android:id="@+id/playTime_tv"
android:visibility="gone"
android:text="@string/main_actor"/>
</LinearLayout>
</LinearLayout>