|
@@ -17,43 +17,33 @@
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
-->
|
|
|
|
|
|
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
- android:id="@+id/list_item"
|
|
|
- android:layout_width="match_parent"
|
|
|
- android:layout_height="48dp"
|
|
|
- android:paddingStart="@dimen/standard_padding_independent"
|
|
|
- android:paddingEnd="@dimen/standard_padding_independent"
|
|
|
- android:paddingRight="@dimen/standard_padding_independent"
|
|
|
- android:paddingLeft="@dimen/standard_padding_independent"
|
|
|
- android:minWidth="@dimen/activity_row_layout_min_width_independent"
|
|
|
- android:background="?android:attr/activatedBackgroundIndicator"
|
|
|
- android:orientation="vertical" >
|
|
|
-
|
|
|
- <LinearLayout
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="match_parent"
|
|
|
- android:duplicateParentState="true" >
|
|
|
+ <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
+ android:id="@+id/list_item"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="48dp"
|
|
|
+ android:paddingStart="@dimen/standard_padding"
|
|
|
+ android:paddingEnd="@dimen/standard_padding"
|
|
|
+ android:paddingRight="@dimen/standard_padding"
|
|
|
+ android:paddingLeft="@dimen/standard_padding"
|
|
|
+ android:minWidth="@dimen/activity_row_layout_min_width_independent"
|
|
|
+ android:background="?android:attr/activatedBackgroundIndicator"
|
|
|
+ android:orientation="horizontal" >
|
|
|
|
|
|
<ImageView
|
|
|
android:id="@+id/icon"
|
|
|
android:layout_width="@dimen/user_icon_size_independent"
|
|
|
android:layout_height="@dimen/user_icon_size_independent"
|
|
|
android:layout_gravity="center_vertical"
|
|
|
- android:layout_marginEnd="@dimen/standard_half_padding_independent"
|
|
|
- android:layout_marginRight="@dimen/standard_half_padding_independent"
|
|
|
- android:duplicateParentState="true" />
|
|
|
+ android:layout_marginEnd="@dimen/standard_padding"
|
|
|
+ android:layout_marginRight="@dimen/standard_padding"/>
|
|
|
|
|
|
<TextView
|
|
|
android:id="@+id/title"
|
|
|
- android:layout_width="wrap_content"
|
|
|
+ android:layout_width="match_parent"
|
|
|
android:layout_height="wrap_content"
|
|
|
android:layout_gravity="center_vertical"
|
|
|
android:textAppearance="?android:attr/textAppearanceLargePopupMenu"
|
|
|
- android:duplicateParentState="true"
|
|
|
android:singleLine="true"
|
|
|
- android:ellipsize="marquee"
|
|
|
- android:fadingEdge="horizontal" />
|
|
|
+ android:ellipsize="marquee"/>
|
|
|
|
|
|
- </LinearLayout>
|
|
|
-
|
|
|
-</LinearLayout>
|
|
|
+ </LinearLayout>
|