WEB开发网
开发学院软件开发Java 手机上的 Scala:使用 Android、Scala 和 Eclipse... 阅读

手机上的 Scala:使用 Android、Scala 和 Eclipse 创建移动应用程序

 2009-12-25 00:00:00 来源:WEB开发网   
核心提示: 清单 1. Converter 应用程序的主要布局<?xmlversion="1.0"encoding="utf-8"?><RelativeLayoutxmlns:android="http://schemas.android.


清单 1. Converter 应用程序的主要布局
<?xml version="1.0" encoding="utf-8"?> 
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
  android:layout_width="fill_parent" android:layout_height="fill_parent" 
  android:gravity="center_horizontal" android:padding="10px" 
  > 
  <TextView android:id="@+id/prompt_label" android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:text="@string/prompt_metric"/> 
  <EditText android:id="@+id/amount" android:layout_below="@id/prompt_label" 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content"/> 
  <TextView android:id="@+id/uom_label"  
    android:layout_below="@id/amount" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:text="@string/uom"/> 
  <Spinner android:id="@+id/uom_value" 
    android:layout_below="@id/uom_label" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content"/> 
  <Button android:id="@+id/convert_button" 
    android:layout_below="@id/uom_value" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:text="@string/convert_button_label"/> 
  <TextView android:id="@+id/result_value" 
    android:layout_below="@id/convert_button" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent"/>     
</RelativeLayout> 

上一页  1 2 3 4 5 6 7 8  下一页

Tags:手机 Scala 使用

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接