2014-12-12 14:01:04 +03:00
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2014-11-27 16:26:31 +03:00
|
|
|
android:layout_width="fill_parent"
|
2014-12-12 14:01:04 +03:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingTop="3dp" >
|
2014-11-27 16:26:31 +03:00
|
|
|
|
2014-12-12 14:01:04 +03:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/uploadListGroupName"
|
|
|
|
style="?android:attr/listSeparatorTextViewStyle"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:layout_toLeftOf="@+id/upload_group_right_button"
|
|
|
|
android:divider="@null"
|
|
|
|
android:dividerHeight="0dp"
|
|
|
|
android:ellipsize="middle"
|
|
|
|
android:showDividers="none"
|
2015-08-21 18:32:24 +03:00
|
|
|
android:textColor="@color/color_accent"
|
2014-12-12 14:01:04 +03:00
|
|
|
/>
|
|
|
|
|
|
|
|
<!-- This would be just too many buttons.
|
|
|
|
<Button
|
|
|
|
android:id="@+id/upload_group_right_button"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
android:layout_alignBottom="@+id/uploadListGroupName"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
style="?android:attr/buttonStyleSmall"
|
2014-12-08 19:03:46 +03:00
|
|
|
android:focusable="false"
|
2014-12-12 14:01:04 +03:00
|
|
|
android:focusableInTouchMode="false"
|
|
|
|
android:text="CLEAR"
|
|
|
|
/>
|
|
|
|
-->
|
|
|
|
|
2014-11-27 16:26:31 +03:00
|
|
|
|
2014-12-12 14:01:04 +03:00
|
|
|
</RelativeLayout>
|