Android学习笔记--速算24点《一,简单的界面》

已经大三了,有许多培训结构也和我谈,意思是叫我去培训,如果不去找工作会如何如何难之类的,再加上本人大学学校并不是很好。不过培训要交一笔不菲的费用,而且自己学还可以锻炼自学能力。但是,发现自己学的话,很多东西是自己写的,也不知道规范不规范,有没有更好的方法,所以想在这里写出来,如果有幸碰见大神,能提点下最好了。

没学过XML,不过看起难容易懂的样子。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    android:background="@drawable/start_game_background"
    tools:context=".MainActivity" 
    >

    <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="33dp"
        android:text="@string/game_title"
        android:textAppearance="?android:attr/textAppearanceLarge" />

    <Button
        android:id="@+id/new_game_button"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_below="@+id/textView1"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="47dp"
        android:text="@string/new_game" />

    <Button
        android:id="@+id/about_button"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_alignLeft="@+id/rule_button"
        android:layout_below="@+id/rule_button"
        android:layout_marginTop="32dp"
        android:text="@string/about_label" />

    <Button
        android:id="@+id/rule_button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignLeft="@+id/new_game_button"
        android:layout_alignRight="@+id/new_game_button"
        android:layout_below="@+id/new_game_button"
        android:layout_marginTop="32dp"
        android:text="@string/rule_label" />

</RelativeLayout>

其中背景颜色看见Hello Android上面说,再创建一个XML,放入res/drawable里,应该就是用XML写了一个背景颜色。

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<gradient
android:startColor="#FFF"
android:endColor="#000"
android:angle="45" />
</shape>
 
 

你可能感兴趣的:(android,界面)