gpt4 book ai didi

java - 图片未加载

转载 作者:行者123 更新时间:2023-12-02 11:55:05 25 4
gpt4 key购买 nike

我想知道为什么这里的图像根本无法加载。 XML 文件不显示图像,但显示 TextViewButton

请帮忙。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="fill_parent">

<TextView
android:id="@+id/textView2"
android:layout_width="177dp"
android:layout_height="wrap_content"
android:text="Middle Right Pop Up" />

<Button
android:id="@+id/button2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Button" />

<ImageView
android:id="@+id/small_circle"
android:layout_width="180dp"
android:layout_height="wrap_content"
app:srcCompat="@drawable/small_compass" />

</LinearLayout>

public class PopUpMiddleRight extends Activity{

ImageView compass;
private float currentDegree = 0f;
private static SensorManager sensorService;
private Sensor sensor;

@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);

setContentView(R.layout.activity_pop_up_middle_right);

WindowManager.LayoutParams windowManager =
getWindow().getAttributes();
windowManager.dimAmount = 0.75f;

getWindow().addFlags(WindowManager.LayoutParams.FLAG_DIM_BEHIND);

DisplayMetrics dm = new DisplayMetrics();
getWindowManager().getDefaultDisplay().getMetrics(dm);

int width = dm.widthPixels;
int height = dm.heightPixels;

getWindow().setLayout((int)(width * .8), (int)(height * .6));

}

}

我正在尝试制作一个弹出窗口,因此它看起来像这样:PopUpWindow

另请注意,我在代码中的另一个位置引用了该图像,因此它可以读取该图像。

最佳答案

替换 将 app:srcCompat="@drawable/small_compass" 改为 android:src="@drawable/small_compass"

关于java - 图片未加载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47658199/

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