blob: 52cf3f578e548be1af1f5e214c988cd06c11e57a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
<?xml version="1.0" encoding="utf-8"?><!--
A greatly compacted link layout with just the ids
The constraints are handled programmatically in AboutActivity
-->
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/about_icons_container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:clickable="false"
android:padding="@dimen/kau_spacing_normal">
<ImageView
android:id="@+id/about_rate"
android:layout_width="@dimen/kau_avatar_bounds"
android:layout_height="@dimen/kau_avatar_bounds" />
<ImageView
android:id="@+id/about_reddit"
android:layout_width="@dimen/kau_avatar_bounds"
android:layout_height="@dimen/kau_avatar_bounds" />
<ImageView
android:id="@+id/about_github"
android:layout_width="@dimen/kau_avatar_bounds"
android:layout_height="@dimen/kau_avatar_bounds" />
</android.support.constraint.ConstraintLayout>
|