Blame view
android/GameSDKRelease/res/layout/bluep_by_otc_portrait.xml
5.18 KB
| 359f62c6d  v3.1.0 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 |   <?xml version="1.0" encoding="utf-8"?>
  <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
      android:id="@+id/scrollView1"
      android:layout_width="300sp"
      android:layout_height="wrap_content"
      android:background="#ffffffff" >
      
      <LinearLayout 
  	    android:layout_width="fill_parent"
  	    android:layout_height="400sp"
  	    android:gravity="center"
  	    android:id="@+id/payByPortrait"
  	    android:orientation="vertical" >
  	    
          <RelativeLayout
  	        android:layout_width="fill_parent"
  	        android:layout_height="50sp" >
  	
  	        <ImageView
  	            android:id="@+id/headerLogo"
  	            android:layout_width="200sp"
  	            android:layout_height="wrap_content"
  	            android:layout_centerVertical="true"
  	            android:layout_alignParentLeft="true"
  	            android:layout_marginLeft="5sp"
  	            android:layout_marginTop="5sp"
  	            android:background="@drawable/bluepay_logo" />
  	
  	    </RelativeLayout>
  	    
          <RelativeLayout
  	        android:layout_width="wrap_content"
  	        android:layout_weight="0.6"
  	        android:paddingTop="5sp"
  	        android:layout_height="wrap_content">
  	        
              
              <ImageView
  	            android:id="@+id/tipIv"
  	            android:layout_width="200sp"
  	            android:layout_height="100sp"
  	            android:layout_centerHorizontal="true"
  	            android:src="@drawable/bluep_logo_onetwocall"/>
              
              <LinearLayout
  		        android:layout_width="wrap_content"
  		        android:layout_height="wrap_content"
  		        android:layout_below="@id/tipIv"
  		        android:layout_centerHorizontal="true"
  		        android:layout_marginTop="5sp"
  		        android:orientation="vertical" >
  	
  	       	 	<TextView
  		            android:id="@+id/textView1"
  		            android:layout_width="fill_parent"
  		            android:layout_height="wrap_content"
  		            android:gravity="center_horizontal"
  		            android:singleLine="true"
  		            android:text="Please Input your Card No."
  		            android:textSize="20px"
  		            android:visibility="gone" />
  		
  		        <EditText
  		            android:id="@+id/payEdit"
  		            android:layout_width="240sp"
  		            android:layout_height="wrap_content"
  		            android:layout_gravity="center"
  		            android:layout_weight="1"
  		            android:background="@drawable/bluep_input_bg"
  		            android:ems="10"
  		            android:gravity="left"
  		            android:hint="Please Input your Card No."
  		            android:inputType="number"
  		            android:numeric="integer"
  		            android:focusableInTouchMode="true"
  		            android:padding="10sp"
  		            android:textColor="#ff000000"
  		            android:textSize="18sp" >
  
  		         </EditText>
  		        
  		        <TextView
  			        android:id="@+id/payTip"
  			        android:layout_width="wrap_content"
  			        android:layout_height="wrap_content"
  			        android:singleLine="true"
  			        android:text=""
  			        android:textColor="#ffff0000"
  			        android:textSize="14px"
  			        android:layout_weight="0.4"
  			        android:visibility="gone" />
  	    	</LinearLayout>
  	        
          </RelativeLayout>
  	
  	    <RelativeLayout
  	        android:layout_width="match_parent"
  	        android:layout_marginTop="5sp"
  	        android:layout_weight="0.6"
  	        android:layout_height="40sp" >
  	
  	        
  	        <Button android:id="@+id/paybyYes"
  	            android:layout_width="wrap_content"
  	            android:layout_height="wrap_content"
  	            android:layout_marginLeft="30sp"
  	            android:layout_alignParentLeft="true"
  	            android:layout_centerVertical="true"
  	            android:text="Ok"
  	            android:textColor="#ffffffff"
  	            android:background="@drawable/bluep_btnbg_selector" />
  	        
  	        <Button
  	            android:id="@+id/paybyNo"
  	            android:layout_width="wrap_content"
  	            android:layout_height="wrap_content"
  	            android:layout_marginRight="30sp"
  	            android:layout_alignParentRight="true"
  	            android:layout_centerVertical="true"
  	            android:text="Cancel"
  	            android:textColor="#ffffffff"
  	            android:background="@drawable/bluep_btnbg_selector" />
  	        
  	        <!-- <ImageButton
  	            android:id="@+id/paybyYes"
  	            android:layout_width="wrap_content"
  	            android:layout_height="wrap_content"
  	            android:paddingLeft="5sp"
  	            android:layout_alignParentLeft="true"
  	            android:layout_centerVertical="true"
  	            android:src="@drawable/g_yes_selector"
  	            android:background="@drawable/g_btnbg_selector" />
  	
  	        <ImageButton
  	            android:id="@+id/paybyNo"
  	            android:layout_width="wrap_content"
  	            android:layout_height="wrap_content"
  	            android:paddingRight="5sp"
  	            android:layout_alignParentRight="true"
  	            android:layout_centerVertical="true"
  	            android:src="@drawable/g_no_selector"
  	            android:background="@null" /> -->
  	
  	
  	    </RelativeLayout>
  	
  	</LinearLayout>
  
  </ScrollView>
 |