• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="utf-8"?>
2<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3              xmlns:support="http://schemas.android.com/apk/res/android.appcompat"
4    android:id="@+id/view"
5    android:layout_width="match_parent"
6    android:layout_height="wrap_content">
7
8    <fragment class="android.test.sample.App$Inner" />
9
10    <variable name="user" type="com.android.User" />
11
12    <View xmlns:app="http://schemas.android.com/apk/res-auto"
13        android:id="@+id/me"
14        android:layout_width="1dp"
15        android:onClick="doClick"
16        android:text="@{user.name}"
17        android:layout_height="match_parent"
18        app:layout_width="@support:bool/allow"
19        app:flags="complex|weak"
20        android:colorAccent="#ffffff"/>
21</LinearLayout>
22