2016-09-12 7 views
4

私はTheme.materialとコード表情などでTextInputLayoutを使用しようとしている....Theme.materialでTextInputLayoutを使用するには?

activity_mail.xml

<?xml version="1.0" encoding="utf-8"?> 
<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" 
    xmlns:drawableLeft="http://schemas.android.com/apk/res-auto" 
    android:background="#2196F3" 
    android:orientation="vertical" 
    android:scrollbarAlwaysDrawVerticalTrack="true" 
    tools:context="com.realmilk.MainActivity"> 

    <TextView 
     android:id="@+id/login_title" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:layout_marginBottom="16dp" 
     android:layout_marginTop="22dp" 
     android:gravity="center_horizontal" 
     android:text="Account Login" 
     android:textColor="#fff" 
     android:textSize="26sp" 
     android:textStyle="bold" /> 

    <RelativeLayout 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:layout_below="@+id/login_title" 
     android:layout_marginTop="70dp" 
     android:background="#fff" 
     android:elevation="4dp" 
     android:orientation="vertical" 
     android:padding="20dp"> 

     <LinearLayout 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:orientation="vertical" 
      android:paddingTop="30dp"> 

      <android.support.design.widget.TextInputLayout 
       android:layout_width="match_parent" 
       android:layout_height="wrap_content"> 

       <EditText 
        android:layout_width="match_parent" 
        android:layout_height="wrap_content" 
        android:drawableLeft="@drawable/ic_supervisor_account_black_24dp" 
        android:drawableTint="#FF4081" 
        android:singleLine="true" 
        android:hint="User Name" 
        android:inputType="textEmailAddress" /> 
      </android.support.design.widget.TextInputLayout> 

      <android.support.design.widget.TextInputLayout 
       android:layout_width="match_parent" 
       android:layout_height="wrap_content"> 

       <EditText 
        android:layout_width="match_parent" 
        android:layout_height="wrap_content" 
        android:layout_marginTop="16dp" 
        android:singleLine="true" 
        android:drawableLeft="@drawable/ic_lock_black_24dp" 
        android:drawableTint="#FF4081" 
        android:hint="Password" 
        android:inputType="numberPassword" /> 
      </android.support.design.widget.TextInputLayout> 

      <TextView 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" 
       android:layout_gravity="right" 
       android:paddingTop="5dp" 
       android:text="Forgot Password?" /> 


      <Button 
       android:layout_width="fill_parent" 
       android:layout_height="wrap_content" 
       android:layout_margin="22dp" 
       android:background="#d67601" 
       android:text="Sign in" 
       android:textAllCaps="false" 
       android:textColor="#fff" 
       android:textSize="18sp" /> 
     </LinearLayout> 
    </RelativeLayout> 

    <ImageButton 
     android:id="@+id/user_profile_photo" 
     android:layout_width="100dp" 
     android:layout_height="100dp" 
     android:layout_below="@+id/login_title" 
     android:layout_centerHorizontal="true" 
     android:layout_marginTop="16dp" 
     android:background="@drawable/user_profile_image_background" 
     android:elevation="4dp" /> 

</RelativeLayout> 

MainActivityは次のようになり..

public class MainActivity extends AppCompatActivity { 

    @Override 
    protected void onCreate(Bundle savedInstanceState) { 
     super.onCreate(savedInstanceState); 
     setContentView(R.layout.activity_main); 
    } 
} 

これを実行しようとすると

Caused by: java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity.                 
      at android.support.v7.app.AppCompatDelegateImplV7.createSubDecor(AppCompatDelegateImplV7.java:343) 
      at android.support.v7.app.AppCompatDelegateImplV7.ensureSubDecor(AppCompatDelegateImplV7.java:312) 
      at android.support.v7.app.AppCompatDelegateImplV7.setContentView(AppCompatDelegateImplV7.java:277) 
      at android.support.v7.app.AppCompatActivity.setContentView(AppCompatActivity.java:140) 
      at com.realmilk.MainActivity.onCreate(MainActivity.java:11) 
      at android.app.Activity.performCreate(Activity.java:6237) 
      at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1107) 
      at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2369) 
      at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2476)  
      at android.app.ActivityThread.-wrap11(ActivityThread.java)  
      at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1344)  
      at android.os.Handler.dispatchMessage(Handler.java:102)  
      at android.os.Looper.loop(Looper.java:148)  
      at android.app.ActivityThread.main(ActivityThread.java:5417) 

私はソールを観察した。

誰かが私が間違っている場所を見つけるのを助けることができます。

+0

あなたの 'style.xml'を投稿してください。 – skydroid

+0

' Theme.AppCompat'テーマを使用する際の問題は何ですか? –

+0

<スタイル名= "AppTheme" 親= "アンドロイド:Theme.Material">< - - 材料のテーマを継承!> <項目名= "アンドロイド:colorPrimary">#2196F3 <アイテム名前= "アンドロイド:colorPrimaryDark">#1976D2 <項目名= "アンドロイド:colorAccent">#私は材料設計を使用したいFFC107 Jaccs

答えて

0

変更後のファイル

あなたがあなたの必要性に従って色を変更することができます

<resources> 
<color name="colorPrimary">#3F51B5</color> 
    <color name="colorPrimaryDark">#1a237e</color> 
    <color name="transparent">@android:color/transparent</color> 
    <color name="colorAccent">#FF4081</color> 
    <color name="windowBackground">#313131</color> 

</resources> 

style.xml

<resources> 

    <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar"> 
      <!-- Customize your theme here. --> 
      <item name="colorPrimary">@color/colorPrimary</item> 
      <item name="colorPrimaryDark">@color/colorPrimaryDark</item> 
      <item name="colorAccent">@color/colorAccent</item> 

     </style> 
</resources> 

colors.xml。このことができます

のAndroidManifest.xml

<application 
     android:allowBackup="true" 
     android:icon="@mipmap/ic_launcher" 
     android:label="@string/app_name" 
     android:supportsRtl="true" 
     android:theme="@style/AppTheme"> 

    //your activities 

</application> 

希望...

+1