我的Activity包含两个片段,底部是一个控制栏,在它上面有两个EditText:
<?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:background="@color/invested_grey_color" >
<RelativeLayout
android:id="@+id/relativeLayout1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_marginTop="5dp"
android:background="@color/transperent_black" >
<com.threefishmedia.sportzone.views.TextViewCustomFont
android:id="@+id/choose_a_set_LeagueName"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:text="@string/view_tournament_rules"
android:textColor="@color/white"
android:textSize="20sp" />
<ImageView
android:id="@+id/choose_a_set_view_tournamnet_rules_iv"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="10dp"
android:layout_toLeftOf="@+id/choose_a_set_LeagueName"
android:clickable="true"
android:src="@drawable/question" />
</RelativeLayout>
<RelativeLayout
android:id="@+id/Choose_a_set_rl"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/relativeLayout1"
android:layout_marginTop="15dp"
android:background="@color/transperent_sportzone_green" >
<com.threefishmedia.sportzone.views.TextViewCustomFont
android:id="@+id/choose_a_set_stage_tv"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:layout_marginBottom="20dp"
android:layout_marginLeft="20dp"
android:layout_marginTop="20dp"
android:text="@string/choose_a_set"
android:textColor="@color/sportzone_green"
android:textSize="35sp" />
<ImageView
android:id="@+id/choose_a_set_vi_sign_iv"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:layout_marginRight="20dp"
android:src="@drawable/ic_launcher" />
</RelativeLayout>
<RelativeLayout
android:id="@+id/make_it_your_own"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/Choose_a_set_rl"
android:layout_marginTop="1dp"
android:background="@color/transperent_sportzone_green" >
<com.threefishmedia.sportzone.views.TextViewCustomFont
android:id="@+id/make_it_your_own_tv" …Run Code Online (Sandbox Code Playgroud) android ×1