gpt4 book ai didi

android - 来自 FragmentActivity 的 fragment 在一些设备上不显示背景图像

转载 作者:太空狗 更新时间:2023-10-29 14:22:58 26 4
gpt4 key购买 nike

所以基本上,我有一个应用程序可以在我所有的设备和谷歌提供的模拟器上运行。但是有一些人报告没有背景图像,这使得文本不可读。请帮忙,我不知道应用程序哪里出了问题。

这是我的 FragmentActivity 文件(基本部分)

public class MainActivity extends FragmentActivity{

private FragmentTabHost mTabHost;

@Override

protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);

setContentView(R.layout.activity_main);


Bundle b1 = new Bundle();
b1.putInt("tabId",111);

Bundle b2 = new Bundle();
b2.putInt("tabId",222);


final FragmentManager fm = getSupportFragmentManager();

mTabHost = (FragmentTabHost)findViewById(android.R.id.tabhost);
mTabHost.setup(this, fm, R.id.realtabcontent);

mTabHost.addTab(mTabHost.newTabSpec("main").setIndicator("MAIN"), TabContentFragment.class, b1);
mTabHost.addTab(mTabHost.newTabSpec("massReading").setIndicator("MASS READING"), TabContentFragment.class, b2);

TabWidget tw = mTabHost.getTabWidget(); //this tabwidget is generated after "addTab", the one from layout is not doing anything
tw.setVisibility(0x00000008); // = "GONE"
}
}

和“activity_main”布局文件

<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/bg"> *******//This is the background image I need to display********

<LinearLayout
android:id="@+id/top"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content"
style="@style/padding"
android:gravity="center"
android:background="@android:color/transparent"
>
<Button
android:id="@+id/back"
style="@style/btn"
android:background="@drawable/back"
/>
<TextView
android:id="@+id/title"
android:layout_height="wrap_content"
android:layout_width="0dp"
android:layout_weight="1"
android:textStyle="bold"
style="@style/title"
android:gravity="center"
/>
<Button
android:id="@+id/down"
style="@style/btn"
android:background="@drawable/decrease"
android:layout_marginRight="15dp"
/>
<Button
android:id="@+id/up"
style="@style/btn"
android:background="@drawable/increase"
/>
</LinearLayout>

<android.support.v4.app.FragmentTabHost
android:id="@android:id/tabhost"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:paddingLeft="10dp"
android:paddingRight="10dp"
android:background="@android:color/transparent"
>

<TabWidget
android:id="@android:id/tabs"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content"
/>

<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="0dp"
android:layout_height="0dp"
/>

<FrameLayout
android:id="@+id/realtabcontent"
android:layout_width="match_parent"
android:layout_height="match_parent"
/>

</android.support.v4.app.FragmentTabHost>

<RadioGroup
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:id="@+id/rg"
>
<RadioButton
android:id="@+id/main"
style="@style/rb"
android:drawableTop="@drawable/reflection"
android:text="@string/rb_left"
/>
<RadioButton
android:id="@+id/mr"
style="@style/rb"
android:drawableTop="@drawable/readings"
android:text="@string/rb_right"
/>
</RadioGroup>

</LinearLayout>

和只有 2 个 webview 的 fragment 文件

public class TabContentFragment extends Fragment {

WebView wv;

public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
if (container == null) {
return null;
}


Bundle b = getArguments();
int tabId = b.getInt("tabId");

wv = (WebView)inflater.inflate(R.layout.tab_content, container, false);

wv.setId(tabId);
wv.setVerticalScrollBarEnabled(false);
wv.setBackgroundColor(0);

if(tabId==111)
{

String htmlString = "<html xmlns='http://www.w3.org/1999/xhtml'>stuff</html>";
wv.loadDataWithBaseURL("",htmlString, "text/html", "UTF-8", "");
}
else
{
String htmlString = "<html xmlns='http://www.w3.org/1999/xhtml'>stuff</html>";
wv.loadDataWithBaseURL("",htmlString, "text/html", "UTF-8", "");
}

return wv;
}
}

最佳答案

检查提示没有位图显示的设备的详细信息,查找 VM 预算。如果设备没有足够的内存来保存位图,则可以简单地将位图设置为空(或无背景)。鉴于您的症状,我会说这就是问题所在。

关于android - 来自 FragmentActivity 的 fragment 在一些设备上不显示背景图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15127160/

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