Android 사용자 정의 컨트롤 조합 컨트롤 학습 노트 공유

사용자 정의 조합 컨트롤 에 대해 말씀 드 리 겠 습 니 다.사용자 정의 조합 컨트롤 에 도 접촉 하 셨 을 거 라 고 믿 습 니 다.긴 말 하지 않 고 바로 하 겠 습 니 다(하~하~).
这里写图片描述
여러분 은 이것 을 보고 이것 이 매우 간단 하 다 고 생각 합 니까?이것 은 바로 레이아웃 파일 을 쓰 면 되 는 것 이 아 닙 니까?맞습니다.직접 레이아웃 에 올 라 가면 됩 니 다.하지만 저 는 이 간단 한 예 로 사용자 정의 조합 컨트롤 의 용법 을 말 할 뿐 입 니 다.
먼저,이 줄 의 항목 은 보기에 차이 가 많 지 않 습 니 다.그림 과 문자 가 다 를 뿐 입 니 다.맞습니다.바로 이 점 을 마음 에 들 어 합 니 다.우 리 는 하나의 항목 을 하나의 조합 컨트롤 로 만 들 고 하나의 전체 로 만 들 수 있 습 니 다.그러면 몇 개의 항목 이 있 든 몇 개의 조합 컨트롤 을 쓰 면 됩 니 다.
단계:
1.조합 컨트롤 의 레이아웃 을 만 듭 니 다.
myView.xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
 android:layout_width="match_parent"
 android:layout_height="60dp" >

 <ImageView
  android:id="@+id/icon_Iv"
  android:layout_width="35dp"
  android:layout_height="35dp"
  android:layout_centerVertical="true"
  android:layout_marginLeft="30dp"
  android:src="@drawable/phone_qiyi_explore_friends" />

 <TextView
  android:id="@+id/tv"
  android:layout_width="wrap_content"
  android:layout_height="match_parent"
  android:layout_marginLeft="80dp"
  android:gravity="center"
  android:text="   "
  android:textSize="15sp"
  android:textStyle="bold" />

 <ImageView
  android:layout_width="wrap_content"
  android:layout_height="match_parent"
  android:layout_alignParentRight="true"
  android:layout_marginRight="20dp"
  android:src="@drawable/phone_my_inc_arrow" />

 <View
  android:layout_width="match_parent"
  android:layout_height="0.5dp"
  android:layout_alignParentBottom="true"
  android:layout_marginLeft="5dp"
  android:layout_marginRight="5dp"
  android:background="#000" />

</RelativeLayout>

这里写图片描述
2.사용자 정의 속성(그림 자원 과 텍스트)
values/디 렉 터 리 에 새 attrs.xml 파일 을 만 듭 니 다.
attrs.xml:

<?xml version="1.0" encoding="utf-8"?>
<resources>
 <!--      :src text -->
 <declare-styleable name="myView_attrs">
  <attr name="src" format="reference"></attr>
  <attr name="text" format="string"></attr>
 </declare-styleable>
</resources>

这里写图片描述
3.새로운 종류의 MyView 는 RelativeLayout 를 계승 하여 사용자 정의 레이아웃 파일 을 불 러 오고 사용자 정의 속성 을 가 져 온 다음 사용자 정의 속성 필드 의 값 을 가 져 옵 니 다.마지막 으로 해당 하 는 값 을 해당 구성 요소 에 설정 합 니 다.

/**
 *        (    ImageView TextView)
 * @author Administrator
 *
 */
public class MyView extends RelativeLayout{

 private TextView tv;
 private ImageView icon_Iv;
 public MyView(Context context) {
  this(context,null);
 }
 public MyView(Context context, AttributeSet attrs) {
  super(context, attrs);
  initView(context);
  //        
  TypedArray ta = context.obtainStyledAttributes(attrs, R.styleable.myView_attrs);
  //         
  String text = ta.getString(R.styleable.myView_attrs_text);
  Drawable drawable = ta.getDrawable(R.styleable.myView_attrs_src);
  //          
  icon_Iv.setImageDrawable(drawable);
  tv.setText(text);
 }
 private void initView(Context context) {
  //           
  View.inflate(context,R.layout.myview,this);
  //        
  icon_Iv = (ImageView) this.findViewById(R.id.icon_Iv);
  tv = (TextView) this.findViewById(R.id.tv);

 }
}

4.main.xml 파일 에 사용자 정의 조합 컨트롤 추가
주:네 임 스페이스 추가
몇 개의 항목 이 있 으 면 몇 개의 컨트롤 을 추가 합 니 다.
main.xml:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android xmlns:briup="http://schemas.android.com/apk/res/com.example.test"
 xmlns:tools="http://schemas.android.com/tools"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:orientation="vertical"
 tools:context="com.example.test.MainActivity" >
 <com.example.test.MyView
  android:id="@+id/myView"
  briup:src="@drawable/phone_qiyi_explore_friends"
  briup:text="   " 
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"/>
 <com.example.test.MyView
  android:id="@+id/myView1"
  briup:src="@drawable/phone_qiyi_gusslike_icon"
  briup:text="   " 
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"/>
 <com.example.test.MyView
  android:id="@+id/myView2"
  briup:text="  " 
  briup:src="@drawable/phone_qiyi_message_icon"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"/>
</LinearLayout>
这里写图片描述
주:
这里写图片描述
이상 의 절 차 를 밟 으 면 됩 니 다.본 고 는 안 드 로 이 드 사용자 정의 컨트롤 을 배 우 는 데 도움 이 되 기 를 바 랍 니 다.

좋은 웹페이지 즐겨찾기