嗨我有很多编辑文本这个简单的活动,但看起来很糟糕。我想添加一些颜色,样式背景和移动edittext以使这个页面有吸引力,因为我知道我的应用程序中使用的颜色是橙色和蓝色 提前谢谢
<?xml version="1.0" encoding="utf-8"?>
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/scrollView"
xmlns:android="http://schemas.android.com/apk/res/android" >
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Référence"
android:textColor="@color/colorPrimary"
android:layout_marginTop="70dp"/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:enabled="false"
android:id="@+id/editRef" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@color/colorPrimary"
android:text="Nom" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/editName" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@color/colorPrimary"
android:text="Description" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/editDesc" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@color/colorPrimary"
android:text="Quantité" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/editQt" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@color/colorPrimary"
android:text="Prix" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/editprix" />
</LinearLayout>
</ScrollView>
答案 0 :(得分:1)
您可以在Textview上使用HTML,如下所示:
myTextView.setText(Html.fromHtml("<h2>Title</h2><br><p>Description here</p>"));
而且,您的活动有一些TextView,而不是EditText
答案 1 :(得分:0)
对于设置颜色,您可以使用
String text = "<font color=#cc0029>Erste Farbe</font> <font color=#ffcc00>zweite Farbe</font>";
yourtextview.setText(Html.fromHtml(text));
对于样式和背景,请查看此处 styles