<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
- <gradient
-
- android:startColor="@color/menu_bottom_start" android:endColor="@color/menu_bottom_stop"
-
- android:angle="270"/>
+ <gradient android:angle="270" android:startColor="#20ffffff"
+ android:endColor="#20ffffff" />
<corners android:topLeftRadius="8dp" android:topRightRadius="8dp" />
</shape>
\ No newline at end of file
android:centerColor="#378f71"
android:endColor="#378f71"
android:angle="270"/>
- <corners android:radius="5dp" />
+ <corners android:bottomLeftRadius="8dp" android:bottomRightRadius="8dp" />
</shape>
\ No newline at end of file
-<?xml version="1.0" encoding="UTF-8"?>
-<shape xmlns:android="http://schemas.android.com/apk/res/android"
- android:shape="rectangle">
- <gradient
-
- android:startColor="@color/header_gradient_stop" android:endColor="@color/header_gradient_stop"
+<?xml version="1.0" encoding="UTF-8"?>
+<layer-list>
- android:angle="270"/>
+ <item>
+ <shape
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ android:shape="rectangle" >
+ <gradient
+ android:angle="270"
+ android:endColor="@color/header_gradient_stop"
+ android:startColor="@color/header_gradient_start" />
- <corners android:bottomRightRadius="8dp" android:bottomLeftRadius="8dp" />
-</shape>
\ No newline at end of file
+ <corners
+ android:bottomLeftRadius="8dp"
+ android:bottomRightRadius="8dp" />
+ </shape>
+ </item>
+ <item>
+ <shape
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ android:shape="rectangle" >
+ <gradient
+ android:angle="270"
+ android:centerColor="#00ffffff"
+ android:endColor="#00ffffff"
+ android:startColor="#40ffffff" />
+
+ <corners
+ android:bottomLeftRadius="8dp"
+ android:bottomRightRadius="8dp" />
+ </shape>
+ </item>
+
+</layer-list>
\ No newline at end of file
-<?xml version="1.0" encoding="UTF-8"?>
-<shape xmlns:android="http://schemas.android.com/apk/res/android"
- android:shape="rectangle">
- <gradient android:startColor="@color/header_gradient_stop" android:endColor="@color/header_gradient_stop"
- android:angle="270"/>
-
- <corners android:bottomLeftRadius="8dp"/>
-</shape>
\ No newline at end of file
+<?xml version="1.0" encoding="UTF-8"?>
+<layer-list>
+
+ <item>
+ <shape
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ android:shape="rectangle" >
+ <gradient
+ android:angle="270"
+ android:endColor="@color/header_gradient_stop"
+ android:startColor="@color/header_gradient_start" />
+
+ <corners
+ android:bottomLeftRadius="8dp"
+/>
+ </shape>
+ </item>
+ <item>
+ <shape
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ android:shape="rectangle" >
+ <gradient
+ android:angle="270"
+ android:centerColor="#00ffffff"
+ android:endColor="#00ffffff"
+ android:startColor="#40ffffff" />
+
+ <corners
+ android:bottomLeftRadius="8dp"
+ />
+ </shape>
+ </item>
+
+</layer-list>
\ No newline at end of file
--- /dev/null
+<?xml version="1.0" encoding="utf-8"?>
+<shape xmlns:android="http://schemas.android.com/apk/res/android">
+ <solid android:color="@color/header_gradient_stop"/>
+ <corners android:bottomLeftRadius="8dp" android:bottomRightRadius="8dp" />
+</shape>
\ No newline at end of file
android:id="@+id/record_details_simple_view"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
- android:orientation="vertical" >
+ android:orientation="vertical"
+ android:background="@color/background"
+ >
<LinearLayout
android:layout_width="fill_parent"
android:layout_marginTop="5dip"
android:gravity="center"
android:orientation="vertical"
-
>
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
+ android:background="@color/background"
>
<include android:id="@+id/header_actionbar" layout="@layout/simple_actionbar"/>
<color name="background">#333</color>
+ <!-- using alpha on header -->
<color name="menu_background_start">#585858</color>
<color name="menu_background_stop">#c8c8c8</color>
+ <!--
+ <color name="menu_background_stop">#10c8c8c8</color>
+ -->
+
<color name="menu_bottom_start">#636363</color>
<color name="menu_bottom_stop">#636363</color>
</style>
<style name="HeaderTitle">
- <item name="android:background">@drawable/header_rounded_corners</item>
+ <item name="android:background">@drawable/title_header_background</item>
<item name="android:textSize">16dip</item>
<item name="android:textStyle">bold</item>
<item name="android:gravity">center</item>
public class MoreCopyInformation extends Activity{
- private ImageButton homeButton;
+ private Button homeButton;
private Button myAccountButton;
record = (RecordInfo) getIntent().getSerializableExtra("recordInfo");
//header portion actions
- homeButton = (ImageButton) findViewById(R.id.library_logo);
+ homeButton = (Button) findViewById(R.id.library_logo);
myAccountButton = (Button) findViewById(R.id.my_account_button);
headerTitle = (TextView) findViewById(R.id.header_title);
headerTitle.setText(R.string.copy_information_title);