mirror of https://github.com/tasks/tasks
RTL support
parent
d18f35965e
commit
cc022036b2
@ -1,62 +1,39 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?><!--
|
||||||
<!--
|
|
||||||
** Copyright (c) 2012 Todoroo Inc
|
** Copyright (c) 2012 Todoroo Inc
|
||||||
**
|
**
|
||||||
** See the file "LICENSE" for the full license governing this code.
|
** See the file "LICENSE" for the full license governing this code.
|
||||||
-->
|
-->
|
||||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
android:layout_width="fill_parent"
|
android:layout_width="fill_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:minHeight="55dip"
|
android:background="?attr/selectableItemBackground"
|
||||||
android:orientation="vertical">
|
android:orientation="vertical"
|
||||||
|
android:padding="@dimen/keyline_first">
|
||||||
|
|
||||||
<RelativeLayout
|
<TextView
|
||||||
|
android:id="@+id/title"
|
||||||
android:layout_width="fill_parent"
|
android:layout_width="fill_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:background="@android:drawable/list_selector_background"
|
|
||||||
android:paddingTop="5dip"
|
|
||||||
android:paddingBottom="5dip"
|
|
||||||
android:paddingLeft="6dip"
|
|
||||||
android:paddingRight="6dip">
|
|
||||||
|
|
||||||
<!-- title -->
|
|
||||||
<TextView android:id="@+id/title"
|
|
||||||
android:layout_width="fill_parent"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:layout_alignParentTop="true"
|
|
||||||
android:textColor="?android:attr/textColorPrimary"
|
android:textColor="?android:attr/textColorPrimary"
|
||||||
android:layout_alignParentLeft="true"
|
android:textSize="16sp" />
|
||||||
android:paddingLeft="5dip"
|
|
||||||
android:paddingRight="3dip"
|
|
||||||
android:textSize="16sp"/>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- activity date -->
|
<TextView
|
||||||
<TextView android:id="@+id/date"
|
android:id="@+id/date"
|
||||||
android:layout_width="fill_parent"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_below="@id/title"
|
|
||||||
android:layout_alignLeft="@id/title"
|
|
||||||
android:layout_marginLeft="5dip"
|
|
||||||
android:paddingTop="1dip"
|
|
||||||
android:textColor="?android:attr/textColorSecondary"
|
|
||||||
android:textStyle="normal"
|
|
||||||
android:gravity="left"
|
|
||||||
android:ellipsize="end"
|
android:ellipsize="end"
|
||||||
|
android:singleLine="true"
|
||||||
|
android:textColor="?android:attr/textColorSecondary"
|
||||||
android:textSize="12sp"
|
android:textSize="12sp"
|
||||||
android:singleLine="true"/>
|
android:textStyle="normal" />
|
||||||
|
|
||||||
</RelativeLayout>
|
|
||||||
|
|
||||||
<!-- picture -->
|
|
||||||
<ImageView
|
<ImageView
|
||||||
android:id="@+id/comment_picture"
|
android:id="@+id/comment_picture"
|
||||||
android:layout_width="50dip"
|
android:layout_width="50dip"
|
||||||
android:layout_height="50dip"
|
android:layout_height="50dip"
|
||||||
android:layout_alignParentBottom="true"
|
android:scaleType="fitCenter"
|
||||||
android:layout_marginLeft="50dip"
|
|
||||||
android:layout_marginBottom="4dip"
|
|
||||||
android:visibility="gone"
|
android:visibility="gone"
|
||||||
android:scaleType="fitCenter"/>
|
tools:ignore="ContentDescription" />
|
||||||
|
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|||||||
Loading…
Reference in New Issue