这是我的界面在Android Studio中的外观:
这是我在真实设备中的界面:
为什么标签没有显示出来,我什至不能更改EditText
背景色?
这是我的一些代码XML文件,对于以下部分,我正在使用ScrollView
,对于颜色部分,我正在使用相对布局。这两种布局都位于CardView
中。
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.CardView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:card_view="http://schemas.android.com/apk/res-auto"
xmlns:app="http://schemas.android.com/tools"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/card_view"
<ScrollView
android:layout_width="match_parent"
android:layout_marginTop="235dp"
android:layout_height="wrap_content"
android:fillViewport="true">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="30dp"
android:layout_marginRight="30dp"
android:layout_marginTop="20dp"
android:orientation="vertical"
android:background="@color/transparent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:background="@color/transparent">
<studio.carbonylgroup.textfieldboxes.TextFieldBoxes
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:labelText="Email"
app:hasClearButton="true">
<studio.carbonylgroup.textfieldboxes.ExtendedEditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:layout_marginBottom="8dp"
android:inputType="textEmailAddress"
android:id="@+id/input_email"/>
</studio.carbonylgroup.textfieldboxes.TextFieldBoxes>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="15dp"
android:orientation="vertical"
android:background="@color/transparent">
<studio.carbonylgroup.textfieldboxes.TextFieldBoxes
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:labelText="Username"
app:hasClearButton="true">
<studio.carbonylgroup.textfieldboxes.ExtendedEditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/input_name"
android:inputType="textPersonName"
android:layout_marginTop="8dp"
android:layout_marginBottom="8dp"/>
</studio.carbonylgroup.textfieldboxes.TextFieldBoxes>
</LinearLayout>
答案 0 :(得分:1)
注意以下几行:
xmlns:app="http://schemas.android.com/tools"
...
app:labelText="Username" //app is a tool namespace, so label text only shown in preview
修改为:
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
...
app:labelText="Username"
答案 1 :(得分:0)
创建一个drawable.xml文件,并将其设置为您的edittext背景,如下所示:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<stroke
android:width="4sp"
android:color="@android:color/white" />
<corners android:radius="20dp" />
<solid android:color="@color/colorPrimary"/>
</shape>
<studio.carbonylgroup.textfieldboxes.ExtendedEditText
android:id="@+id/et"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/drawable"
/>
在您的TextFieldBoxes中添加xmlns:tools="http://schemas.android.com/tools"