Skip to content
This repository has been archived by the owner on Sep 6, 2019. It is now read-only.

Commit

Permalink
Revise on demand layout
Browse files Browse the repository at this point in the history
Refs #1755
  • Loading branch information
M66B committed Jun 29, 2014
1 parent dc8ba55 commit fc00f07
Showing 1 changed file with 32 additions and 32 deletions.
64 changes: 32 additions & 32 deletions res/layout/ondemand.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,42 +4,15 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:paddingLeft="16dip"
android:paddingRight="16dip"
android:paddingTop="16dip" >

<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal"
tools:ignore="UseCompoundDrawables" >

<ImageView
android:layout_width="32dip"
android:layout_height="32dip"
android:contentDescription="@string/app_name"
android:src="@drawable/ic_launcher" />

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="6dip"
android:text="@string/app_name"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textStyle="bold" />
</LinearLayout>

<View
android:layout_width="match_parent"
android:layout_height="2dip"
android:layout_marginTop="6dip"
android:background="@android:color/darker_gray" />
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin" >

<ScrollView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="6dip"
android:orientation="vertical" >
android:orientation="vertical"
tools:ignore="UselessParent" >

<LinearLayout
android:layout_width="wrap_content"
Expand All @@ -52,6 +25,33 @@
android:orientation="horizontal"
tools:ignore="UseCompoundDrawables" >

<ImageView
android:layout_width="32dip"
android:layout_height="32dip"
android:contentDescription="@string/app_name"
android:src="@drawable/ic_launcher" />

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="6dip"
android:text="@string/app_name"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textStyle="bold" />
</LinearLayout>

<View
android:layout_width="match_parent"
android:layout_height="2dip"
android:layout_marginTop="6dip"
android:background="@android:color/darker_gray" />

<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="6dip"
android:orientation="horizontal" >

<ImageView
android:id="@+id/ivAppIcon"
android:layout_width="32dip"
Expand Down

0 comments on commit fc00f07

Please sign in to comment.