2017-06-08 33 views

答えて

0

使用この、ちょうど十字画像と星画像を変更:

<LinearLayout 
    xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:tools="http://schemas.android.com/tools" 
    android:id="@+id/activity_test" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:orientation="vertical" 
    android:paddingBottom="@dimen/activity_vertical_margin" 
    android:paddingLeft="@dimen/activity_horizontal_margin" 
    android:paddingRight="@dimen/activity_horizontal_margin" 
    android:paddingTop="@dimen/activity_vertical_margin" 
    tools:context="com.example.mmc.testproject.TestActivity"> 

    <TextView 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:text="Fly From:"/> 


    <EditText 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:minWidth="100dp" 
     android:textSize="20sp" 
     android:drawableEnd="@drawable/star" 
     android:background="@android:drawable/editbox_background"/> 

    <TextView 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_marginTop="8dp" 
     android:text="Fly to:"/> 

    <EditText 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:minWidth="100dp" 
     android:textSize="20sp" 
     android:drawableEnd="@drawable/star" 
     android:background="@android:drawable/editbox_background"/> 
</LinearLayout> 
関連する問題