Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(220)

Side by Side Diff: samples/todomvc/android/TodoMVC/app/src/main/res/layout/todo_item.xml

Issue 2035023003: Remove service-compiler related code. (Closed) Base URL: git@github.com:dartino/sdk.git@master
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <?xml version="1.0" encoding="utf-8"?>
2 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 android:layout_width="fill_parent"
4 android:layout_height="?android:attr/listPreferredItemHeight"
5 android:padding="6dip"
6 >
7 <TextView
8 android:id="@+id/todo_title"
9 android:text="Some todo item..."
10 android:layout_width="fill_parent"
11 android:layout_height="fill_parent"
12 android:gravity="left|center"
13 android:singleLine="true"
14 android:padding="3dip"
15 android:textSize="16sp"
16 />
17 <CheckBox
18 android:id="@+id/todo_status"
19 android:layout_width="wrap_content"
20 android:layout_height="fill_parent"
21 android:layout_alignParentRight="true"
22 android:focusable="false"
23 android:clickable="false"
24 />
25 </RelativeLayout>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698