Home | History | Annotate | Download | only in layout-land
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <LinearLayout
      3      xmlns:android="http://schemas.android.com/apk/res/android"
      4      android:layout_width="match_parent"
      5      android:layout_height="wrap_content"
      6      >
      7 
      8     <TextView 
      9          android:id="@+id/historyExpr"
     10          android:layout_width="0px"
     11          android:layout_height="wrap_content"
     12          android:layout_weight="1"
     13          android:textSize="23dp"
     14          android:singleLine="true"
     15          />        
     16 
     17     <TextView
     18          android:id="@+id/historyResult"
     19          android:layout_width="180px"
     20          android:layout_height="wrap_content"
     21          android:layout_weight="0"
     22          android:textSize="23dp"
     23          android:singleLine="true"
     24          />
     25 
     26 </LinearLayout>
     27