在我的佈局中,我有幾個編輯文本用於標題,日期,時間等。問題是我點擊第一個edittext的任何領域都得到了重點關注(如果我想先填充日期edittext我必須點擊它,鍵盤顯示焦點集中在第一個edittext,然後我必須再次點擊日期edittext才能填充它)。我怎樣才能讓它專注於我點擊的edittext?點擊後,我嘗試請求重點編輯文本,但沒有任何更改。請求關注所選編輯文本
每個EditText上看起來像這樣的XML
<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="20sp"
android:layout_marginTop="20sp"
android:layout_marginRight="20sp">
<EditText
android:id="@+id/etTitle"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:drawablePadding="8dp"
android:paddingLeft="40dp"
android:paddingRight="10dp"
android:singleLine="true"
android:textColor="@android:color/tab_indicator_text"
android:hint="Title">
<requestFocus />
</EditText>
<ImageView
android:layout_width="25sp"
android:layout_height="25sp"
android:layout_gravity="left|center_vertical"
android:layout_marginBottom="4sp"
android:layout_marginLeft="5sp"
android:src="@drawable/tv" />
</FrameLayout>
請提供您的代碼的相關部分。 –
向我們顯示您的代碼 – Jas