我是android的新手,我想添加edittext多行 并在编辑文本的背面有阴影,我该怎么做。
<Edittext
android:id="@+id/toolbarTitle"
android:layout_width="150sp"
android:hint="User Name"
android:textSize="15sp"
android:textStyle="bold"
android:textColor="#000000"
android:layout_height="wrap_content"
/>
答案 0 :(得分:1)
尝试一下
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<form>
<input type="button" class="MyColors" style="background-color:black" value=" " name="B1" onclick="black()" />
<input type="button" class="MyColors" style="background-color:blue" value=" " name="B2" onclick="blue()" />
<input type="button" class="MyColors" style="background-color:#ff00ff" value=" " name="B3" onclick="fuchsia()" />
<input type="button" class="MyColors" style="background-color:green" value=" " name="B4" onclick="green()" />
<input type="button" class="MyColors" style="background-color:#808000" value=" " name="B7" onclick="oil()" />
<input type="button" class="MyColors" style="background-color:purple" value=" " name="B5" onclick="purple()" />
<input type="button" class="MyColors" style="background-color:red" value=" " name="B6" onclick="red()" />
<input type="button" class="MyColors" style="background-color:#c44000" value=" " name="B8" onclick="orange()" />
<input type="button" class="MyColors" style="background-color:white" value=" " name="B9" onclick="white()" />
<input type="button" class="MyColors" style="background-color:brown" value=" " name="B10" onclick="brown()" />
<input type="button" class="MyColors" style="background-color:yellow" value=" " name="B11" onclick="yellow()" />
<input type="button" class="MyColors" style="background-color:#00ff00" value=" " name="B12" onclick="lgreen()" />
</form>
如果要使用背景图像和阴影,请使用
<Edittext
android:id="@+id/toolbarTitle"
android:layout_width="150sp"
android:hint="User Name"
android:textSize="15sp"
android:textStyle="bold"
android:textColor="#000000"
android:layout_height="wrap_content"
android:inputType="textMultiLine"
android:minLines="3"
/>
答案 1 :(得分:0)
您可以在此行:
<TextView
android:id="@+id/toolbarTitle"
android:marqueeRepeatLimit="marquee_forever"
android:layout_width="150sp"
android:text="User Name"
android:inputType="textMultiLine"
android:lines="<number of line>"
android:textSize="15sp"
android:textStyle="bold"
android:textColor="#000000"
android:elevation="10dp"
android:layout_height="wrap_content"
/>