Android 프로 그래 밍 기반 핸드폰 화면 크기 가 져 오기(DisplayMetrics 응용)예시

이 사례 는 안 드 로 이 드 가 휴대 전화 화면 크기 를 가 져 오 는 방법 을 설명 한다.여러분 께 참고 하도록 공유 하 겠 습 니 다.구체 적 으로 는 다음 과 같 습 니 다.
여 기 는 주로 세 개의 대상 인 TextView,Button,그리고 DisplayMetrics 를 사 용 했 습 니 다.그 중에서 Displaymetrics 는 핸드폰 화면 크기 를 얻 는 관건 적 인 유형 입 니 다.이 예 는 매우 간단 합 니 다.우리 가 단 추 를 누 르 면 이 벤트 를 촉발 하고 TextView 에 핸드폰 화면의 너비 와 높 은 분 별 률 을 표시 합 니 다.
효과 도 보기:
버튼 실행 전:

버튼 터치 후:

그 중에서 우 리 는 res->layot->values->string.xml 에 다음 과 같은 두 줄 을 추 가 했 습 니 다.

<string name="resolution">      :</string>
<string name="pressme">      </string>

구체 적 인 코드 는 다음 과 같다.

<?xml version="1.0" encoding="utf-8"?>
<resources>
  <string name="hello">Hello World, DisplayMetricsDemo!</string>
  <string name="app_name">DisplayMetricsDemo</string>
  <string name="resolution">      :</string>
  <string name="pressme">      </string>
</resources>

레이아웃 파일 main.xml 코드 는 다음 과 같 습 니 다.

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:orientation="vertical"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent"
  >
<TextView
  android:id="@+id/textview1"
  android:layout_width="fill_parent"
  android:layout_height="wrap_content"
  android:text="@string/resolution"
  />
<Button
  android:id="@+id/button1"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:text="@string/pressme"
/>
</LinearLayout>

마지막 으로 우리 의 주 클래스 Displaymetrics Demo.Java 입 니 다.코드 는 다음 과 같 습 니 다.

package com.android.test;
import android.app.Activity;
import android.os.Bundle;
import android.util.DisplayMetrics;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;
public class DisplayMetricsDemo extends Activity {
  private TextView textview1;
  private Button button1;
  //           
  private DisplayMetrics dm;
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    //     TextView,Button  
    textview1 = (TextView)findViewById(R.id.textview1);
    button1 = (Button)findViewById(R.id.button1);
    //  button    
    button1.setOnClickListener(new Button.OnClickListener(){
      public void onClick(View v)
      {
        dm = new DisplayMetrics();
        getWindowManager().getDefaultDisplay().getMetrics(dm);
        //               px
        String str = "        :" + dm.widthPixels
        +" * "+dm.heightPixels;
        textview1.setText(str);
      }
    });
  }
}

이 예 는 비교적 간단 하 다.핵심 은 바로 onClick 안의 몇 줄 코드 이다.
더 많은 안 드 로 이 드 관련 내용 에 관심 이 있 는 독자 들 은 본 사이트 의 주 제 를 볼 수 있다.
본 고 에서 말 한 것 이 여러분 의 안 드 로 이 드 프로 그래 밍 에 도움 이 되 기 를 바 랍 니 다.

좋은 웹페이지 즐겨찾기