게이지를 표시하기 위해 Android 앱을 개발 중입니다. 게이지의 종류는 다양합니다 (gauge1.xml, 게이지 2.xml). 내가하고 싶은 게 레이아웃 xml 파일을 JSON 배열을 사용하여 주 눈금보기에로드하십시오.GridView에 다중 레이아웃 작업 표시
각 그리드 셀은 에 따라 다른 레이아웃을 포함합니다. JSON 개체.
내 JSON 대상 :{"user1": [{"ui": "gauge", "id": "gauge1", "value": 69}, {"ui":
"gauge", "id": "gauge2", "value": 23}]}
Gauge1.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<pl.pawelkleczkowski.customgauge.CustomGauge
android:id="@+id/gauge1"
android:layout_width="200dp"
android:layout_height="200dp"
android:layout_centerHorizontal="true"
android:paddingBottom="20dp"
android:paddingLeft="20dp"
android:paddingRight="20dp"
android:paddingTop="20dp"
app:gaugePointStartColor="@color/md_red_500"
app:gaugePointEndColor="@color/md_red_500"
app:gaugePointSize="6"
app:gaugeStartAngle="135"
app:gaugeStrokeCap="ROUND"
app:gaugeStrokeColor="@color/md_grey_400"
app:gaugeStrokeWidth="10dp"
app:gaugeStartValue="0"
app:gaugeEndValue="1000"
app:gaugeSweepAngle="270" />
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/gauge1"
android:layout_centerHorizontal="true"
android:layout_marginBottom="18dp"
android:text="256"
android:textSize="20dp" />
<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/textView1"
android:layout_centerHorizontal="true"
android:layout_marginBottom="18dp"
android:text="Temp"
android:textSize="20dp"
android:textStyle="bold" />
</RelativeLayout>
내가 그것을 어떻게 할 수 있습니까?
나는 계기로 pkleczko's CustomGauge을 사용하고 있습니다.