gpt4 book ai didi

android - 在 GridView 中显示工作多个布局

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:12:05 25 4
gpt4 key购买 nike

我正在开发一个 Android 应用来显示仪表。有不同类型的仪表(gauge1.xmlgauge2.xml 等)。我想要做的是使用 JSON 数组将不同类型的仪表 layout xml 文件加载到主 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用于测量。

最佳答案

在适配器的 getView 方法中,根据需要扩充布局(gauge1.xml 或 gauge2.xml)。例如,在仪表 ID 上使用 if。

按照以下步骤:

  • 为 GridView 扩展基础适配器定义适配器
  • 在 getView 方法中,在方法提供的位置检索项目
  • 根据检索到的项目,膨胀正确的布局
public class UsersAdapter extends BaseAdapter {

private final Context mContext;
private final User[] users;

public UsersAdapter(Context context, User[] users) {
this.mContext = context;
this.users = users;
}

@Override
public int getCount() {
return users.length;
}

@Override
public View getView(int position, View convertView, ViewGroup parent) {
User curUser = users[position];
LayoutInflater inflater = LayoutInflater.from(context);
ViewHolder holder;
if (convertView == null) {
holder = new ViewHolder();
if (//curUser needs gauge1 layout//){
convertView = inflater.inflate(R.layout.gauge1, parent, false);
// do what you need with the layout gauge 1
}else{
convertView = inflater.inflate(R.layout.gauge2, parent, false);
// do what you need with the layout gauge 1
}
}
return convertView;
}

}

关于android - 在 GridView 中显示工作多个布局,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47217843/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com