Skip to content

hanmin998/AndroidApp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AndroidApp

Some Simple Android-Apps

    注释:Day_x——yy为实习第x天的第yy个实例。

Day_1:

主要介绍了<LinearLayout></LinearLayout>布局下的各种控件的相关属性,
<LinearLayout>:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/LinearLayout1"
android:layout_width="match_parent" 
android:layout_height="match_parent"
android:gravity="left" 
android:background="#000000"
android:orientation="vertical" />

<TextView>:
<TextView
    android:id="@+id/textView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/web"
    android:autoLink="web"
    android:background="@drawable/a"
    tools:context=".MainActivity" />
<!-- web。。。超链接 -->
<!-- @string/。。。。是定义布局属性的唯一方式 -->
<Button>:
<Button
    android:id="@+id/button1"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="@string/email"
    android:autoLink="email" />"
<EditText>:
<EditText
    android:id="@+id/editText1"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:hint="@string/please_input"/>"

Day_01:

            关于微信的登陆页面实现。

About

Some Simple Android-Apps

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages