我是安卓新手。我的布局如下:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/hello_world" />
<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="26-01-2010" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Calender" />
</LinearLayout>
我有一个编辑框和按钮。当我点击按钮时,我想打开一个日历并能够从日历中选择一个日期。此外,必须将所选日期设置为编辑框。