Chromium Code Reviews| Index: experimental/HelloSkia/res/layout/main.xml |
| diff --git a/experimental/HelloSkia/res/layout/main.xml b/experimental/HelloSkia/res/layout/main.xml |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..77362c82fc88c1c00f1572989096889107c09ec2 |
| --- /dev/null |
| +++ b/experimental/HelloSkia/res/layout/main.xml |
| @@ -0,0 +1,13 @@ |
| +<?xml version="1.0" encoding="utf-8"?> |
| +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
| + android:orientation="vertical" |
| + android:layout_width="fill_parent" |
| + android:layout_height="fill_parent" |
| + > |
| +<TextView |
| + android:layout_width="fill_parent" |
| + android:layout_height="wrap_content" |
| + android:text="Hello World, HelloSkiaActivity" |
|
djsollen
2013/06/03 18:24:45
why do you need a text view? Can't we draw it all
Zach Reizner
2013/06/03 22:54:25
Done.
|
| + /> |
| +</LinearLayout> |
| + |