summaryrefslogtreecommitdiffstats
path: root/tools/aapt2/data/res/layout/main.xml
blob: 5160570d58cee5066423908b6db4d3f6996abb7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/view"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <variable name="user" type="com.android.User" />

    <View xmlns:app="http://schemas.android.com/apk/res-auto"
        android:id="@+id/me"
        android:layout_width="1dp"
        android:text="@{user.name}"
        android:layout_height="match_parent"
        app:layout_width="false"
        app:flags="complex|weak"
        android:colorAccent="#ffffff"/>
</LinearLayout>