EditText在android中显示为textview

时间:2014-09-16 11:20:01

标签: android android-edittext

嗨在我的应用程序中,如果我拖放编辑文本,则将其显示为textview

现在,如果我单击EditText我想选择datepicker选项,然后选择日期现在,如果我选择了edittext没有发生任何事情。

任何人都可以帮助我。

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="match_parent"
    android:background="@color/black"
    android:orientation="vertical"
    android:padding="10dip"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    android:weightSum="1" >

    <!-- Text Label -->

    <ImageView
        android:id="@+id/imageView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:src="@drawable/attend" />

    <TextView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="10dip"
        android:text="Select Class"
        android:layout_marginBottom="5dp"
    />

    <!-- Spinner Element -->
    <Spinner 
        android:id="@+id/spinner"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:prompt="@string/spinner_title"
    />
    <!-- Text Label -->
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="10dip"
        android:text="Select Section"
        android:layout_marginBottom="5dp"
    />

    <!-- Spinner Element -->
    <Spinner 
        android:id="@+id/spinner1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:prompt="@string/spinner_section"
    />



    <EditText
        android:id="@+id/etxt_fromdate"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:ems="10" 
        android:hint="@string/from_date">


    </EditText>

</LinearLayout>

1 个答案:

答案 0 :(得分:0)

在onclick方法中实现setOnClicklistner()to edittext把你的datepicker对话框代码