OSDN Git Service

bd4f95dc604a1429f4c0733cb7d2b8fe94952155
[sharp4k/CUTEn.git] / CUTEn / res / layout / lecture.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
3         android:layout_width="match_parent"
4         android:layout_height="match_parent"
5             android:stretchColumns="*" >
6
7         <TableRow
8             android:id="@+id/tableRowLecture1"
9             android:layout_width="match_parent"
10             android:layout_height="wrap_content" >
11
12             <LinearLayout
13                 android:layout_width="wrap_content"
14                 android:layout_height="wrap_content" >
15
16                 <ImageView
17                     android:id="@+id/imageButtonLecture"
18                     android:layout_width="wrap_content"
19                     android:layout_height="150dp"
20                     android:src="@android:drawable/btn_star" />
21                 <Button
22                     android:id="@+id/buttonLecture"
23                     android:layout_width="match_parent"
24                     android:layout_height="150dp" />
25             </LinearLayout>
26         </TableRow>
27         <TableRow
28             android:id="@+id/tableRowLecture2"
29             android:layout_width="match_parent"
30             android:layout_height="match_parent" >
31             <ScrollView
32                 android:id="@+id/scrollViewLecture"
33                 android:layout_width="match_parent"
34                 android:layout_height="match_parent" >
35                 <LinearLayout
36                     android:id="@+id/linearViewLecture"
37                         android:layout_width="match_parent"
38                     android:layout_height="wrap_content"
39                     android:orientation="vertical" >
40                   <!-- スクロール中に最初から表示したいものを書く -->
41             </LinearLayout>
42                 
43             </ScrollView>
44         </TableRow>
45 </TableLayout>