86 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			86 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
| <?xml version="1.0" encoding="utf-8"?>
 | |
| <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 | |
|     android:layout_width="match_parent"
 | |
|     android:layout_height="wrap_content"
 | |
|     android:layout_margin="5dp"
 | |
|     android:orientation="vertical" >
 | |
| 
 | |
|     <TextView
 | |
|         android:id="@+id/headerTextView"
 | |
|         android:layout_width="wrap_content"
 | |
|         android:layout_height="wrap_content"
 | |
|         android:layout_margin="5dp"
 | |
|         android:text="TextView"
 | |
|         android:textSize="16sp"
 | |
|         android:textStyle="bold" />
 | |
| 
 | |
|     <TextView
 | |
|         android:id="@+id/subHeaderTextView"
 | |
|         android:layout_width="wrap_content"
 | |
|         android:layout_height="wrap_content"
 | |
|         android:layout_margin="5dp"
 | |
|         android:text="TextView" />
 | |
| 
 | |
|     <LinearLayout
 | |
|         android:layout_width="wrap_content"
 | |
|         android:layout_height="wrap_content"
 | |
|         android:layout_margin="5dp" >
 | |
| 
 | |
|         <ImageView
 | |
|             android:id="@+id/imageView"
 | |
|             android:layout_width="204dp"
 | |
|             android:layout_height="wrap_content"
 | |
|             android:layout_gravity="center"
 | |
|             android:layout_margin="5dp"
 | |
|             android:adjustViewBounds="true"
 | |
|             android:scaleType="fitCenter"
 | |
|             android:src="@drawable/economics_teaser" />
 | |
| 
 | |
|         <TextView
 | |
|             android:id="@+id/imageTextView"
 | |
|             android:layout_width="match_parent"
 | |
|             android:layout_height="wrap_content"
 | |
|             android:layout_margin="5dp"
 | |
|             android:text="TextView"
 | |
|             android:visibility="gone" />
 | |
|     </LinearLayout>
 | |
| 
 | |
|     <TextView
 | |
|         android:id="@+id/footerTextView"
 | |
|         android:layout_width="wrap_content"
 | |
|         android:layout_height="wrap_content"
 | |
|         android:layout_margin="5dp"
 | |
|         android:text="TextView" />
 | |
| 
 | |
|     <LinearLayout
 | |
|         android:id="@+id/LinearLayout1"
 | |
|         android:layout_width="match_parent"
 | |
|         android:layout_height="wrap_content"
 | |
|         android:layout_margin="5dp"
 | |
|         android:orientation="vertical" >
 | |
| 
 | |
|         <Button
 | |
|             android:id="@+id/button1"
 | |
|             android:layout_width="match_parent"
 | |
|             android:layout_height="wrap_content"
 | |
|             android:layout_weight="1"
 | |
|             android:text="Button" />
 | |
| 
 | |
|         <Button
 | |
|             android:id="@+id/button2"
 | |
|             android:layout_width="match_parent"
 | |
|             android:layout_height="wrap_content"
 | |
|             android:layout_weight="1"
 | |
|             android:text="Button" />
 | |
| 
 | |
|         <Button
 | |
|             android:id="@+id/button3"
 | |
|             android:layout_width="match_parent"
 | |
|             android:layout_height="wrap_content"
 | |
|             android:layout_weight="1"
 | |
|             android:text="Button"
 | |
|             android:visibility="visible" />
 | |
|     </LinearLayout>
 | |
| 
 | |
| </LinearLayout>
 |