Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> [Android新手學習筆記21]-百分比布局

[Android新手學習筆記21]-百分比布局

編輯:關於Android編程

使用前需要在app/build.gradle文件中添加如下內容:

compile 'com.android.support:percent:25.1.1'

注意25.1.1為版本,有要求,和上面版本填一樣。

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:25.1.1'
compile 'com.android.support:percent:25.1.1'
testCompile 'junit:junit:4.12'
}

修改app/build.gradle文件時,會提示:

Gradle files have changed since last project sync. A project sync may be necessary for the IDE to work properly.Sync Now

點擊Sync Now即可。

基本配置如下:

xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">

android:id="@+id/button1"
android:text="Button"
android:layout_gravity="left|top"
app:layout_widthPercent="50%"
app:layout_heightPercent="50%" />

android:id="@+id/button2"
android:text="Button"
android:layout_gravity="right|top"
app:layout_widthPercent="50%"
app:layout_heightPercent="50%" />

android:id="@+id/button3"
android:text="Button"
android:layout_gravity="left|bottom"
app:layout_widthPercent="50%"
app:layout_heightPercent="50%" />

android:id="@+id/button4"
android:text="Button"
android:layout_gravity="right|bottom"
app:layout_widthPercent="50%"
app:layout_heightPercent="50%" />
 
  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved