<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:paddingLeft="@dimen/hs__msgPreferredItemPaddingLeft"
    android:paddingTop="@dimen/hs__msgPreferredItemPaddingTop"
    android:paddingBottom="@dimen/hs__msgPreferredItemPaddingBottom"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    >

  <LinearLayout
      android:layout_width="0dp"
      android:layout_height="wrap_content"
      android:layout_weight="0.80"
      >

    <LinearLayout
        android:id="@+id/admin_message"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="?attr/hs__chatBubbleAdminBackground"
        android:orientation="vertical"
        android:gravity="center"
        >

      <TextView
          android:id="@android:id/text1"
          android:textColor="?attr/hs__messagesTextColor"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:textAppearance="?android:attr/textAppearanceMedium"
          android:paddingTop="@dimen/hs__msgPreferredItemPaddingTop"
          android:paddingBottom="@dimen/hs__msgPreferredItemPaddingBottom"
          android:paddingLeft="@dimen/hs__msgPreferredItemPaddingLeft"
          android:paddingRight="@dimen/hs__msgPreferredItemPaddingRight"
          />

      <ProgressBar
          android:id="@android:id/progress"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:gravity="center"
          style="?android:attr/progressBarStyle"
          android:paddingBottom="@dimen/hs__msgPreferredItemPaddingTop"
          />

      <View
          android:id="@android:id/custom"
          android:layout_width="fill_parent"
          android:layout_height="1dp"
          android:background="?attr/hs__chatBubbleSeparatorColor"
          android:alpha="0.5"/>

      <ImageButton
          android:contentDescription="@string/hs__review_title"
          android:id="@android:id/button1"
          android:layout_width="match_parent"
          android:layout_height="wrap_content"
          android:background="?attr/hs__selectableItemBackground"
          android:src="@drawable/hs__action_review"
          android:paddingTop="@dimen/hs__msgActionButtonPadding"
          android:paddingBottom="@dimen/hs__msgActionButtonPadding"
          />

    </LinearLayout>
  </LinearLayout>

  <View
      android:layout_width="0dp"
      android:layout_height="wrap_content"
      android:layout_weight="0.20"
      />
</LinearLayout>
<!-- From: file:/Users/naiquevin/helpshift/code/r2d2/Helpshift/src/main/res/layout/hs__msg_review_request.xml -->