|
|
@ -10,37 +10,37 @@ |
|
|
|
android:orientation="vertical" > |
|
|
|
android:orientation="vertical" > |
|
|
|
|
|
|
|
|
|
|
|
<RelativeLayout |
|
|
|
<RelativeLayout |
|
|
|
android:id="@+id/new_tab_button" |
|
|
|
|
|
|
|
android:layout_width="match_parent" |
|
|
|
android:layout_width="match_parent" |
|
|
|
android:layout_height="?attr/actionBarSize" |
|
|
|
android:layout_height="?attr/actionBarSize" |
|
|
|
android:background="?attr/listBackground" |
|
|
|
android:background="?attr/dividerColor" |
|
|
|
android:gravity="center_vertical" |
|
|
|
android:gravity="center_vertical" |
|
|
|
android:orientation="horizontal" > |
|
|
|
android:orientation="horizontal" > |
|
|
|
|
|
|
|
|
|
|
|
<ImageView |
|
|
|
<ImageView |
|
|
|
android:id="@+id/plusIcon" |
|
|
|
android:id="@+id/plusIcon" |
|
|
|
android:layout_width="24dp" |
|
|
|
android:layout_width="26dp" |
|
|
|
android:layout_height="24dp" |
|
|
|
android:layout_height="26dp" |
|
|
|
android:layout_alignParentLeft="true" |
|
|
|
android:layout_alignParentLeft="true" |
|
|
|
android:layout_centerVertical="true" |
|
|
|
android:layout_centerVertical="true" |
|
|
|
android:layout_marginLeft="16dp" |
|
|
|
android:layout_marginLeft="15dp" |
|
|
|
android:layout_marginRight="16dp" |
|
|
|
android:layout_marginRight="15dp" |
|
|
|
android:contentDescription="@string/action_new_tab" |
|
|
|
android:contentDescription="@string/action_new_tab" |
|
|
|
android:gravity="center_vertical" |
|
|
|
android:gravity="center_vertical" |
|
|
|
android:src="?attr/plusDrawable" > |
|
|
|
android:src="?attr/tabDrawable" > |
|
|
|
</ImageView> |
|
|
|
</ImageView> |
|
|
|
|
|
|
|
|
|
|
|
<TextView |
|
|
|
<TextView |
|
|
|
android:id="@+id/text1" |
|
|
|
|
|
|
|
android:layout_width="match_parent" |
|
|
|
android:layout_width="match_parent" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_centerVertical="true" |
|
|
|
android:layout_centerVertical="true" |
|
|
|
|
|
|
|
android:layout_marginLeft="16dp" |
|
|
|
android:layout_toRightOf="@+id/plusIcon" |
|
|
|
android:layout_toRightOf="@+id/plusIcon" |
|
|
|
|
|
|
|
android:fontFamily="sans-serif-light" |
|
|
|
android:gravity="center_vertical" |
|
|
|
android:gravity="center_vertical" |
|
|
|
android:maxLines="1" |
|
|
|
android:maxLines="1" |
|
|
|
android:minHeight="?android:attr/listPreferredItemHeightSmall" |
|
|
|
android:minHeight="?android:attr/listPreferredItemHeight" |
|
|
|
android:text="@string/action_new_tab" |
|
|
|
android:text="@string/tabs" |
|
|
|
android:textAppearance="?android:attr/textAppearanceListItemSmall" /> |
|
|
|
android:textAppearance="?android:attr/textAppearanceLarge" /> |
|
|
|
</RelativeLayout> |
|
|
|
</RelativeLayout> |
|
|
|
|
|
|
|
|
|
|
|
<View |
|
|
|
<View |
|
|
@ -65,12 +65,12 @@ |
|
|
|
android:background="?attr/dividerColor" /> |
|
|
|
android:background="?attr/dividerColor" /> |
|
|
|
|
|
|
|
|
|
|
|
<LinearLayout |
|
|
|
<LinearLayout |
|
|
|
android:id="@+id/linearLayout1" |
|
|
|
|
|
|
|
android:layout_width="match_parent" |
|
|
|
android:layout_width="match_parent" |
|
|
|
android:layout_height="?attr/actionBarSize" |
|
|
|
android:layout_height="?attr/actionBarSize" |
|
|
|
|
|
|
|
android:background="?attr/dividerColor" |
|
|
|
android:baselineAligned="false" |
|
|
|
android:baselineAligned="false" |
|
|
|
android:orientation="horizontal" |
|
|
|
android:orientation="horizontal" |
|
|
|
android:weightSum="2" > |
|
|
|
android:weightSum="3" > |
|
|
|
|
|
|
|
|
|
|
|
<RelativeLayout |
|
|
|
<RelativeLayout |
|
|
|
android:id="@+id/action_back" |
|
|
|
android:id="@+id/action_back" |
|
|
@ -92,6 +92,27 @@ |
|
|
|
android:src="?attr/arrowBackDrawable" /> |
|
|
|
android:src="?attr/arrowBackDrawable" /> |
|
|
|
</RelativeLayout> |
|
|
|
</RelativeLayout> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<RelativeLayout |
|
|
|
|
|
|
|
android:id="@+id/new_tab_button" |
|
|
|
|
|
|
|
android:layout_width="match_parent" |
|
|
|
|
|
|
|
android:layout_height="match_parent" |
|
|
|
|
|
|
|
android:layout_weight="1" |
|
|
|
|
|
|
|
android:background="?attr/listBackground" |
|
|
|
|
|
|
|
android:clickable="true" > |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<ImageView |
|
|
|
|
|
|
|
android:layout_width="wrap_content" |
|
|
|
|
|
|
|
android:layout_height="wrap_content" |
|
|
|
|
|
|
|
android:layout_centerInParent="true" |
|
|
|
|
|
|
|
android:contentDescription="@string/action_new_tab" |
|
|
|
|
|
|
|
android:paddingBottom="4dp" |
|
|
|
|
|
|
|
android:paddingLeft="4dp" |
|
|
|
|
|
|
|
android:paddingRight="4dp" |
|
|
|
|
|
|
|
android:paddingTop="4dp" |
|
|
|
|
|
|
|
android:src="?attr/plusDrawable" > |
|
|
|
|
|
|
|
</ImageView> |
|
|
|
|
|
|
|
</RelativeLayout> |
|
|
|
|
|
|
|
|
|
|
|
<RelativeLayout |
|
|
|
<RelativeLayout |
|
|
|
android:id="@+id/action_forward" |
|
|
|
android:id="@+id/action_forward" |
|
|
|
android:layout_width="match_parent" |
|
|
|
android:layout_width="match_parent" |
|
|
|