Refactoring panoramio image preview fragment layout

master
Tomasz Półgrabia 2016-10-22 23:19:05 +02:00
parent 9638e94c16
commit 272474e7ff
1 changed files with 22 additions and 34 deletions

View File

@ -12,60 +12,48 @@
android:layout_weight="1"/> android:layout_weight="1"/>
<LinearLayout android:layout_width="match_parent" <LinearLayout android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:text="@string/title_label"/> android:orientation="horizontal">
<TextView android:id="@+id/photo_title" <TextView android:id="@+id/photo_title"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content"/> android:layout_height="wrap_content"
android:text="@string/test_string"/>
<Space android:layout_width="0dp"
android:layout_height="0dp"
android:layout_weight="1" />
<TextView android:id="@+id/photo_upload"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/test_string"/>
</LinearLayout> </LinearLayout>
<LinearLayout android:layout_width="match_parent" <LinearLayout android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:text="@string/author_label"/> android:orientation="horizontal">
<TextView android:id="@+id/photo_author" <TextView android:id="@+id/photo_author"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content"/> android:layout_height="wrap_content"/>
</LinearLayout>
<LinearLayout android:layout_width="match_parent" <Space android:layout_width="0dp"
android:layout_height="wrap_content"> android:layout_height="0dp"
<TextView android:layout_width="wrap_content" android:layout_weight="1" />
android:layout_height="wrap_content"
android:text="@string/upload_date_label"/>
<TextView android:id="@+id/photo_upload"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</LinearLayout>
<LinearLayout android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/location_label"/>
<TextView android:id="@+id/photo_location" <TextView android:id="@+id/photo_location"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:textColor="@color/blue"/> android:textColor="@color/blue"/>
</LinearLayout> </LinearLayout>
<LinearLayout android:layout_width="match_parent" <TextView android:id="@+id/photo_url"
android:layout_height="wrap_content"> android:layout_width="wrap_content"
<TextView android:layout_width="wrap_content" android:layout_height="wrap_content"
android:layout_height="wrap_content" android:layout_gravity="center_horizontal"/>
android:text="@string/panoramio_url"/>
<TextView android:id="@+id/photo_url"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</LinearLayout>
</LinearLayout> </LinearLayout>