Android 더 많은 항목 수축 전개 컨트롤 ExpandView 의 예제 코드
효과 시범 도
시범 도
Android Studio 통합 방식
dependencies{
compile 'com.wkp:ExpandView:1.0.4'
//Android Studio3.0+
//implementation 'com.wkp:ExpandView:1.0.4'
}
사용 설명1.속성 설명
<!-- -->
<attr name="wkp_column" format="integer"/>
<!-- -->
<attr name="wkp_rowMin" format="integer"/>
<!-- -->
<attr name="wkp_space" format="dimension"/>
<!-- ,0 -->
<attr name="wkp_itemDuration" format="integer"/>
<!-- -->
<attr name="wkp_itemHeight" format="dimension"/>
<!--“ ” -->
<attr name="wkp_moreButtonImg" format="reference"/>
<!--“ ” -->
<attr name="wkp_moreButtonText" format="string"/>
<!-- -->
<attr name="wkp_textBgColor" format="color"/>
<!-- -->
<attr name="wkp_textColor" format="color"/>
<!-- -->
<attr name="wkp_textSize" format="dimension"/>
<!-- -->
<attr name="wkp_textBgRes" format="reference"/>
2.레이아웃 예시그림 1 레이아웃
<com.wkp.expandview_lib.view.ExpandView
app:wkp_textSize="@dimen/size_16sp"
app:wkp_column="3"
app:wkp_rowMin="3"
app:wkp_itemHeight="120dp"
app:wkp_textBgRes="@drawable/text_bg"
android:id="@+id/ev"
android:layout_width="match_parent"
android:layout_height="wrap_content">
</com.wkp.expandview_lib.view.ExpandView>
그림 2 레이아웃
<com.wkp.expandview_lib.view.ExpandView
app:wkp_textSize="@dimen/size_16sp"
app:wkp_column="4"
app:wkp_rowMin="2"
app:wkp_itemHeight="120dp"
app:wkp_textBgRes="@drawable/text_bg"
android:id="@+id/ev"
android:layout_width="match_parent"
android:layout_height="wrap_content">
</com.wkp.expandview_lib.view.ExpandView>
3.코드 예시
public class MainActivity extends AppCompatActivity {
private static final String[] items = {" ", " ", " ", " , ", " ", " ",
"123", "456", "789", "abc", "def", " "};
private static final String[] items1 = {" 1", " 1", " 1", " , 1", " 1", " 1",
"123", "456", "789", "abc1", "def1", " 1"};
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
final ExpandView expandView = (ExpandView) findViewById(R.id.ev);
//
expandView.setTextItems(items);
// ListView
expandView.setTextItems(items1);
//
expandView.packUpItems();
//
expandView.setOnItemClickListener(new ExpandView.OnItemClickListener() {
@Override
public void onItemClick(View view, ViewGroup parent, int position) {
if (position == items.length - 1) {
//
expandView.packUpItems();
}
}
});
}
}
결어컨트롤 은 직접 코드 생 성 을 지원 합 니 다.더 많은 API 는 ExpandView.java 의 설명 을 보십시오.
github 주소:https://github.com/wkp111/ExpandView
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Kotlin의 기초 - 2부지난 글에서는 Kotlin이 무엇인지, Kotlin의 특징, Kotlin에서 변수 및 데이터 유형을 선언하는 방법과 같은 Kotlin의 기본 개념에 대해 배웠습니다. 유형 변환은 데이터 변수의 한 유형을 다른 데이터...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.