第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

為什么“找不到 android.support.design.widget.TextInputL”

為什么“找不到 android.support.design.widget.TextInputL”

烙印99 2023-03-31 09:21:58
我的 Android Studio 版本是 3.4,我的 compileSdkVersion 29 和 buildToolsVersion“29.0.1”。我想使用 TextInputLayout,但出現(xiàn)此錯(cuò)誤:缺少類:找不到以下類:- android.support.design.widget .TextInputLayout (Fix Build Path, Edit XML, Create Class) 提示:嘗試構(gòu)建項(xiàng)目。我搜索了幾天。我添加了這個(gè)implementation 'com.android.support:appcompat-v7:29.0.1'implementation 'com.android.support:design:29.0.1'到我的 gradle 文件。但這個(gè)錯(cuò)誤仍然存在。這是我的 xml:<?xml version="1.0" encoding="utf-8"?><RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"    android:layout_width="match_parent"    android:layout_height="match_parent">    <com.example.studentv3.tools.RoundImageView        android:id="@+id/admin_layout_pic"        android:layout_width="100dp"        android:layout_height="100dp"        android:layout_centerHorizontal="true"        android:layout_marginTop="100dp"        android:src="@drawable/admin_photo" />    <android.support.design.widget.TextInputLayout        android:id="@+id/tt2"        android:layout_below="@+id/admin_layout_pic"        android:layout_width="match_parent"        android:layout_height="wrap_content">        <EditText            android:id="@+id/admin_login_activity_name_input"            android:layout_width="match_parent"            android:layout_height="50dp"            android:layout_below="@+id/admin_layout_pic"            android:layout_centerHorizontal="true"            android:layout_marginLeft="50dp"            android:layout_marginRight="50dp"            android:layout_marginTop="20dp"            android:background="@drawable/input_box"            android:gravity="center"            android:hint="請(qǐng)輸入賬戶"            android:maxLines="1"            android:paddingLeft="@dimen/input_box_left_padding"            android:textColor="@color/grey_text" />    </android.support.design.widget.TextInputLayout>
查看完整描述

2 回答

?
溫溫醬

TA貢獻(xiàn)1752條經(jīng)驗(yàn) 獲得超4個(gè)贊

您可以使用材料設(shè)計(jì)來實(shí)現(xiàn) TextInputEditText 和 TextInputLayout。


使用最新版本的材料設(shè)計(jì):


api 'com.google.android.material:material:1.1.0-alpha06'

然后實(shí)現(xiàn)如下。


<com.google.android.material.textfield.TextInputLayout

    android:id="@+id/layout_username"

    style="@style/Widget.ChatMe.TextInputLayout"

    android:layout_width="match_parent"

    android:layout_height="wrap_content"

    android:layout_marginStart="32dp"

    android:layout_marginTop="100dp"

    android:layout_marginEnd="32dp"

    app:layout_constraintEnd_toEndOf="parent"

    app:layout_constraintStart_toStartOf="parent"

    app:layout_constraintTop_toTopOf="parent">


    <com.google.android.material.textfield.TextInputEditText

        android:id="@+id/et_username"

        android:layout_width="match_parent"

        android:layout_height="match_parent"

        android:hint="Username" />

</com.google.android.material.textfield.TextInputLayout>


查看完整回答
反對(duì) 回復(fù) 2023-03-31
?
慕容3067478

TA貢獻(xiàn)1773條經(jīng)驗(yàn) 獲得超3個(gè)贊

<com.google.android.material.textfield.TextInputLayout

            android:id="@+id/in1"

            android:layout_width="match_parent"

            android:layout_marginTop="20dp"

            android:layout_gravity="center"

            android:gravity="center"

            android:textColorHint="#353536"

            android:layout_marginLeft="15dp"

            android:layout_marginRight="15dp"

            android:layout_height="wrap_content"

            app:passwordToggleEnabled="true">


            <EditText

                android:id="@+id/loginPass"

                android:layout_width="match_parent"

                android:layout_height="wrap_content"

                android:layout_centerHorizontal="true"

                android:ems="10"

                android:inputType="textPassword"

                android:hint="@string/loginPassword"

                android:paddingLeft="10dp" />

</com.google.android.material.textfield.TextInputLayout>


查看完整回答
反對(duì) 回復(fù) 2023-03-31
  • 2 回答
  • 0 關(guān)注
  • 141 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)