Android adaptation-percentage adaptation, android adaptation percentage

Source: Internet
Author: User

Android adaptation-percentage adaptation, android adaptation percentage

First, add the com. android. support: percent: 24.1.1 package.

dependencies {    compile fileTree(dir: 'libs', include: ['*.jar'])    testCompile 'junit:junit:4.12'    compile 'com.android.support:appcompat-v7:24.1.1'    compile 'com.android.support:percent:24.1.1'}

}

 

 

 

This package provides two la S: PercentRelativeLayout and PercentFrameLayout,

Supported attributes include:layout_widthPercent,layout_heightPercent,
  layout_marginPercent,layout_marginLeftPercent,
  layout_marginTopPercent,layout_marginRightPercent,
  layout_marginBottomPercent,layout_marginStartPercent,layout_marginEndPercent

This is probably the content. Below is a piece of code and

<? Xml version = "1.0" encoding = "UTF-8"?> <Android. support. percent. percentRelativeLayout 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" xmlns: app = "http://schemas.android.com/apk/res-auto" tools: context = "com. example. administrator. mingyishijia. loginActivity "> <android. support. v7.widget. toolbar xmlns: app = "http :// Authorization "app: navigationIcon =" @ mipmap/left_back_gray_icon "android: id =" @ + id/activity_main_toolbar "android: layout_height =" wrap_content "android: layout_width =" match_parent "android: minHeight = "? Attr/actionBarSize "android: background = "? Attr/colorPrimary "> </android. support. v7.widget. toolbar> <EditText android: layout_width = "0dp" android: layout_height = "0dp" app: layout_heightPercent = "8%" app: layout_widthPercent = "70%" android: background = "@ drawable/usereditor_background" android: id = "@ + id/userName" android: gravity = "center" android: layout_below = "@ + id/activity_main_toolbar" app: layout_marginTopPercent = "10%" android: layout_centerHorizontal = "true" android: hint = "enter an account"/> <EditText android: layout_width = "0dp" android: layout_height = "0dp" app: layout_heightPercent = "8%" app: layout_widthPercent = "70%" android: background = "@ drawable/usereditor_background" android: id = "@ + id/password" android: layout_below = "@ + id/userName" android: gravity = "center" app: layout_marginTopPercent = "2%" android: layout_centerHorizontal = "true" android: hint = "enter the password"/> <Button android: layout_width = "0dp" android: layout_height = "0dp" app: layout_heightPercent = "8%" app: layout_widthPercent = "70%" android: background = "@ drawable/login_button_background" android: id = "@ + id/login" android: layout_below = "@ + id/password" android: text = "login" android: textSize = "18sp" android: textColor = "# ffffff" android: layout_centerHorizontal = "true" app: layout_marginTopPercent = "5%"/> <TextView android: layout_width = "wrap_content" android: layout_height = "wrap_content" android: id = "@ + id/forgetPassword" android: layout_below = "@ + id/login" android: layout_alignLeft = "@ + id/login" app: layout_marginTopPercent = "2%" android: text = "forgot password" android: textSize = "12sp" android: textColor = "# 1a81ff"/> <LinearLayout android: layout_width = "0dp" android: layout_height = "wrap_content" app: layout_widthPercent = "90%" android: id = "@ + id/l1" android: orientation = "horizontal" android: clickable = "false" android: layout_centerHorizontal = "true" android: layout_below = "@ + id/forgetPassword" app: layout_marginTopPercent = "5%"> <View android: layout_width = "match_parent" android: layout_height = "1dp" android: background = "#000000" android: layout_weight = "1.1" android: layout_gravity = "center"/> <TextView android: layout_width = "match_parent" android: layout_height = "wrap_content" android: layout_weight = "1" android: text = "or use the following method to log on to" android: textSize = "12sp" android: gravity = "center"/> <View android: layout_width = "match_parent" android: layout_height = "1dp" android: background = "#000000" android: layout_weight = "1.1" android: layout_gravity = "center"/> </LinearLayout> <LinearLayout android: layout_width = "0dp" android: layout_height = "0dp" app: layout_heightPercent = "15%" app: layout_widthPercent = "75%" android: layout_centerHorizontal = "true" android: orientation = "horizontal" android: layout_below = "@ + id/l1" app: layout_marginTopPercent = "5%" android: id = "@ + id/linearLayout"> <android. support. percent. percentRelativeLayout android: layout_width = "match_parent" android: layout_height = "match_parent" android: layout_weight = "1"> <ImageView android: layout_width = "0dp" android: layout_height = "0dp" app: layout_heightPercent = "60%" app: layout_widthPercent = "100%" android: scaleType = "fitCenter" android: id = "@ + id/iv1" android: src = "@ mipmap/weixin"/> <TextView android: layout_width = "0dp" android: layout_height = "0dp" app: layout_heightPercent = "40%" app: layout_widthPercent = "100%" android: layout_below = "@ + id/iv1" android: text = "" android: gravity = "center"/> </android. support. percent. percentRelativeLayout> <android. support. percent. percentRelativeLayout android: layout_width = "match_parent" android: layout_height = "match_parent" android: layout_weight = "1"> <ImageView android: layout_width = "0dp" android: layout_height = "0dp" app: layout_heightPercent = "60%" app: layout_widthPercent = "100%" android: scaleType = "fitCenter" android: id = "@ + id/iv2" android: src = "@ mipmap/aqq1"/> <TextView android: layout_width = "0dp" android: layout_height = "0dp" app: layout_heightPercent = "40%" app: layout_widthPercent = "100%" android: layout_below = "@ + id/iv2" android: text = "QQ" android: gravity = "center"/> </android. support. percent. percentRelativeLayout> <android. support. percent. percentRelativeLayout android: layout_width = "match_parent" android: layout_height = "match_parent" android: layout_weight = "1"> <ImageView android: layout_width = "0dp" android: layout_height = "0dp" app: layout_heightPercent = "60%" app: layout_widthPercent = "100%" android: scaleType = "fitCenter" android: id = "@ + id/iv3" android: src = "@ mipmap/dingding"/> <TextView android: layout_width = "0dp" android: layout_height = "0dp" app: layout_heightPercent = "40%" app: layout_widthPercent = "100%" android: layout_below = "@ + id/iv3" android: text = "dingtalk" android: gravity = "center"/> </android. support. percent. percentRelativeLayout> </LinearLayout> </android. support. percent. percentRelativeLayout>

 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.