android 默认dimens_Android使用尺寸资源 dimens

本文介绍了如何在Android应用中创建尺寸资源文件`test_dimens.xml`,并展示了如何在`DimensionActivity`中读取这些尺寸值来动态设置Button的宽高。通过使用`getDimension()`方法,实现了UI元素的尺寸适配,提高了应用的用户体验。
摘要由CSDN通过智能技术生成

文本区域

按钮

150px

100px

30mm

10mm

#f00

文本区域

按钮

150px

100px

30mm

10mm

#f00

2.在layout文件夹下建立名为test_dimens.xml的文件,如下:

android:layout_width="fill_parent"

android:layout_height="fill_parent"

android:orientation="vertical">

android:text="@string/test_dimen"

android:id="@+id/myDimenTextView01"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:width="@dimen/text_width"

android:height="@dimen/text_height"

android:background="@color/red_bg"

/>

android:text="@string/test_dimen1"

android:id="@+id/Button01"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

/>

android:layout_width="fill_parent"

android:layout_height="fill_parent"

android:orientation="vertical" >

android:text="@string/test_dimen"

android:id="@+id/myDimenTextView01"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:width="@dimen/text_width"

android:height="@dimen/text_height"

android:background="@color/red_bg"

/>

android:text="@string/test_dimen1"

android:id="@+id/Button01"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

/>

3.建立类:

packagecom.dim;

importandroid.app.Activity;

importandroid.os.Bundle;

importandroid.widget.Button;

importandroid.content.res.*;

importcom.dim.R;

publicclassDimensionActivityextendsActivity {

/** Called when the activity is first created. */

privateButton btn;

@Override

publicvoidonCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

//设置当前Activity的布局

setContentView(R.layout.test_dimens);

//获取Button实例

btn=(Button)findViewById(R.id.Button01);

Resources r=getResources();

floatbtn_h =r.getDimension(R.dimen.btn_height);

floatbtn_w =r.getDimension(R.dimen.btn_width);

btn.setHeight((int)btn_h);

btn.setWidth((int)btn_w);

//setContentView(R.layout.main);

}

}

package com.dim;

import android.app.Activity;

import android.os.Bundle;

import android.widget.Button;

import android.content.res.*;

import com.dim.R;

public class DimensionActivity extends Activity {

/** Called when the activity is first created. */

private Button btn;

@Override

public void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

//设置当前Activity的布局

setContentView(R.layout.test_dimens);

//获取Button实例

btn=(Button)findViewById(R.id.Button01);

Resources r=getResources();

float btn_h =r.getDimension(R.dimen.btn_height);

float btn_w =r.getDimension(R.dimen.btn_width);

btn.setHeight((int)btn_h);

btn.setWidth((int)btn_w);

//setContentView(R.layout.main);

}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值