初次提交
This commit is contained in:
BIN
第13章 顶点着色器的妙用/Sample13_1/res/drawable-hdpi/android_flag.jpg
Normal file
BIN
第13章 顶点着色器的妙用/Sample13_1/res/drawable-hdpi/android_flag.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 99 KiB |
BIN
第13章 顶点着色器的妙用/Sample13_1/res/drawable-hdpi/icon.png
Normal file
BIN
第13章 顶点着色器的妙用/Sample13_1/res/drawable-hdpi/icon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 4.0 KiB |
33
第13章 顶点着色器的妙用/Sample13_1/res/layout/main.xml
Normal file
33
第13章 顶点着色器的妙用/Sample13_1/res/layout/main.xml
Normal file
@@ -0,0 +1,33 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:orientation="horizontal"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="fill_parent"
|
||||
android:id="@+id/main_liner"
|
||||
>
|
||||
<RadioGroup
|
||||
android:id="@+id/RadioGroup01"
|
||||
android:orientation="vertical"
|
||||
android:layout_width="100dip"
|
||||
android:layout_height="fill_parent">
|
||||
<RadioButton
|
||||
android:text="X方向"
|
||||
android:id="@+id/x1"
|
||||
android:checked="true"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content">
|
||||
</RadioButton>
|
||||
<RadioButton
|
||||
android:text="斜向下"
|
||||
android:id="@+id/x2"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content">
|
||||
</RadioButton>
|
||||
<RadioButton
|
||||
android:text="XY双向"
|
||||
android:id="@+id/x3"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content">
|
||||
</RadioButton>
|
||||
</RadioGroup>
|
||||
</LinearLayout>
|
||||
4
第13章 顶点着色器的妙用/Sample13_1/res/values/strings.xml
Normal file
4
第13章 顶点着色器的妙用/Sample13_1/res/values/strings.xml
Normal file
@@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="app_name">Sample13_1</string>
|
||||
</resources>
|
||||
Reference in New Issue
Block a user