在我的main.xml中,我有一个像goview now card样式的Imageview。每次电池更换百分比时,此imageview都会更改图像。我还有一个textview,其中我写了电池电量。我想要的是在imageview上写下电池电量,这样我就可以在电池图像附近看到它。这是main.xml部分:
<ImageView
android:id="@+id/textViewBatteryInfoimage" (this change with percentage)
android:layout_width="160dp"
android:layout_height="160dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:adjustViewBounds="true"
android:contentDescription="image"
android:background="@layout/background_card"
tools:ignore="HardcodedText" />
<TextView
android:id="@+id/level"
android:gravity="center_vertical"
android:paddingLeft="10dp"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_marginLeft="15dp"
android:layout_marginRight="15dp"
android:fontFamily="sans-serif-light"
android:layout_marginTop="5dp"
android:textColor="#FB8A34"
android:textSize="20dp"
tools:ignore="SelectableText,SpUsage" />
电池级别是用java写的
TextView textViewliv = (TextView)findViewById(R.id.level);
textViewliv.setText(Html.fromHtml("Battery level: "+ "<small> <font color='#343434'>" + level + "%</font></small>"));
我该怎么做?