在我的 main.xml 中,我有一个类似于 google now 卡的 Imageview。每次电池更换百分比时,此 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>"));
我该怎么做?