嗨我有很多編輯文本這個簡單的活動,但它看起來不好。我想添加一些顏色,款式的背景和移動的EditText讓這個網頁的吸引力知道,在我的應用程序中使用的顏色是橙色和藍色 在此先感謝我如何製作一個有吸引力的界面android
<?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>
使用此設計https://www.google.com/design/spec /style/color.html#color-color-schemes –
謝謝有沒有一個android模板? –