Android 창 위 젯 기본 코드 인 스 턴 스 작성

1605 단어 Android창구.부품
창 작은 위 젯 을 실현 하고 핸드폰 메모리 카드 가 지정 한 디 렉 터 리 에 있 는 그림 파일 에 접근 한 다음 창의 작은 위 젯 에 표시 할 그림 파일 을 무 작위 로 선택 하 십시오.그림 경 로 는 List 저장 소 를 사용 하여 초급 Android 학습자 가 참고 하기에 적합 합 니 다.이 시스템 은 서비스 가 없어 서 프로 세 스 가 오래 지속 되 는 것 을 보장 할 수 없습니다.
빈 레이아웃 항목 을 새로 만 들 고 Widget 을 새로 만 듭 니 다.그림 참조:
새 xml 와 자바 구현 클래스 에서 작성 하면 됩 니 다.

picture_widget.xml 파일 은 다음 과 같 습 니 다.

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:padding="@dimen/widget_margin">

  <ImageView
    android:id="@+id/picture_widget"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:src="@drawable/zhizhuxia" />
  <TextView
    android:id="@+id/change_picture"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text=""
    android:textSize="10dp"
    android:gravity="right|bottom"
    android:layout_marginRight="2dp"
    android:layout_marginBottom="2dp"/>
</RelativeLayout>
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기