Files
adif-api-reverse-engineering/apk_decompiled/resources/res/layout/item_data_placeholder.xml

53 lines
2.5 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginLeft="10dp"
android:layout_marginTop="10dp"
android:layout_marginStart="10dp">
<View
android:id="@+id/status"
android:background="@color/placeholder_background"
android:layout_width="@dimen/placeholder_status_width"
android:layout_height="@dimen/placeholder_text_height"
android:layout_marginTop="@dimen/padding_10"
android:layout_marginRight="@dimen/activityPadding"
android:layout_alignParentRight="true"
android:layout_marginEnd="@dimen/activityPadding"
android:layout_alignParentEnd="true"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/status">
<LinearLayout
android:orientation="vertical"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginRight="@dimen/placeholder_container_margin_end"
android:layout_weight="1"
android:layout_marginEnd="@dimen/placeholder_container_margin_end">
<View
android:background="@color/placeholder_background"
android:layout_width="@dimen/placeholder_title_width"
android:layout_height="@dimen/placeholder_text_height"
android:layout_marginBottom="@dimen/placeholder_title_margin_bottom"/>
<View
android:background="@color/placeholder_background"
android:layout_width="@dimen/placeholder_station_width"
android:layout_height="@dimen/placeholder_text_height"/>
<View
android:background="@color/placeholder_background"
android:layout_width="match_parent"
android:layout_height="@dimen/placeholder_description_height"
android:layout_marginTop="@dimen/item_issue_description_margin_bottom"/>
</LinearLayout>
<View
android:layout_gravity="center_vertical"
android:background="@color/placeholder_background"
android:layout_width="@dimen/placeholder_arrow_size"
android:layout_height="@dimen/placeholder_arrow_size"
android:layout_marginRight="@dimen/activityPadding"
android:layout_marginEnd="@dimen/activityPadding"/>
</LinearLayout>
</RelativeLayout>