123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical"
- android:background="#E80000"
- >
- <ListView
- android:id="@+id/rn_redbox_stack"
- android:layout_width="match_parent"
- android:layout_height="0dp"
- android:layout_weight="1"
- />
- <View
- android:id="@+id/rn_redbox_line_separator"
- android:layout_width="match_parent"
- android:layout_height="1dp"
- android:background="@android:color/darker_gray"
- android:visibility="gone"
- />
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal"
- >
- <ProgressBar
- android:id="@+id/rn_redbox_loading_indicator"
- android:layout_width="wrap_content"
- android:layout_height="match_parent"
- style="@android:style/Widget.ProgressBar.Small"
- android:indeterminateOnly="true"
- android:visibility="gone"
- android:paddingLeft="16dp"
- />
- <TextView
- android:id="@+id/rn_redbox_report_label"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:textColor="@android:color/white"
- android:textSize="14sp"
- android:fontFamily="monospace"
- android:visibility="gone"
- android:paddingTop="16dp"
- android:paddingBottom="16dp"
- android:paddingLeft="16dp"
- android:paddingRight="16dp"
- android:lineSpacingExtra="4dp"
- />
- </LinearLayout>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal"
- >
- <Button
- android:id="@+id/rn_redbox_dismiss_button"
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:layout_margin="4dp"
- android:text="@string/catalyst_dismiss_button"
- android:textColor="@android:color/white"
- android:textSize="14sp"
- android:alpha="0.5"
- style="?android:attr/borderlessButtonStyle"
- android:gravity="center_horizontal|top"
- />
- <Button
- android:id="@+id/rn_redbox_reload_button"
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:layout_margin="4dp"
- android:text="@string/catalyst_reload_button"
- android:textColor="@android:color/white"
- android:textSize="14sp"
- android:alpha="0.5"
- style="?android:attr/borderlessButtonStyle"
- android:gravity="center_horizontal|top"
- />
- <Button
- android:id="@+id/rn_redbox_copy_button"
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:layout_margin="4dp"
- android:text="@string/catalyst_copy_button"
- android:textColor="@android:color/white"
- android:textSize="14sp"
- android:alpha="0.5"
- style="?android:attr/borderlessButtonStyle"
- android:gravity="center_horizontal|top"
- />
- <Button
- android:id="@+id/rn_redbox_report_button"
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:layout_margin="4dp"
- android:text="@string/catalyst_report_button"
- android:textColor="@android:color/white"
- android:textSize="14sp"
- android:alpha="0.5"
- style="?android:attr/borderlessButtonStyle"
- android:visibility="gone"
- android:gravity="center_horizontal|top"
- />
- </LinearLayout>
- </LinearLayout>
|