我正在開發一個應用程序,其中有三個單選按鈕的活動。 這是我的.xml代碼...在android中選擇Radiobutton
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity" >
<EditText
android:id="@+id/editText1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="32dp"
android:hint="@string/hint"
android:ems="10" />
<RadioGroup
android:id="@+id/radioGroup"
android:layout_width="100dp"
android:layout_height="wrap_content"
android:layout_marginTop="200dp"
android:layout_marginLeft="30dp"
android:gravity="center" >
<RadioButton
android:id="@+id/rad1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:text="@string/rad1" />
<RadioButton
android:id="@+id/rad2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="8dp"
android:text="@string/rad2" />
<RadioButton
android:id="@+id/rad3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/rad3"
android:layout_marginLeft="8dp" />
</RadioGroup>
</RelativeLayout>
我要轉換的EditText的輸入文本,十六進制,十進制格式。 默認情況下,它是文本值。 當用戶選擇十六進制單選按鈕時,文本應該被轉換爲十六進制。 之後,當用戶選擇十進制,然後十六進制應轉換爲十進制... 我的問題是如何在用戶輸入單一格式時轉換爲其他兩種格式.. 我有轉換邏輯.. 。 請幫我...謝謝...
什麼是這裏的問題少年,從EditText上採取TXT,在無線電選擇上,U已經有對話的邏輯,將它轉換並再次顯示在同一個Edittext中。你想從我們那裏得到什麼? – AAnkit 2013-02-18 07:59:35
但我有三種格式的六種不同的轉換... 文本到十二月,文本到十六進制,十二月到文本,十二進制到十六進制,十六進制到十二進制,十六進制到文本。 當用戶選擇單選按鈕,那麼這些不同的功能如何知道它從目標格式轉換成哪種格式... – 2013-02-18 08:04:13
轉換時設置一些標誌。檢查標誌的條件,同時將 – Deepzz 2013-02-18 08:10:44