- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
所以基本上,我有一个应用程序可以在我所有的设备和谷歌提供的模拟器上运行。但是有一些人报告没有背景图像,这使得文本不可读。请帮忙,我不知道应用程序哪里出了问题。
这是我的 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/
我遇到了一个无法用应用程序的抽屉导航解决的问题。抽屉导航中的链接之一是打开 FragmentActivity(其中包含 ViewPager)。其他链接是 fragment 。现在我已将其设置为启动该
除了使用 Intents 启动方法外,还有其他方法可以调用 FragmentActivity 中的方法吗?有人可以帮忙吗? 代码如下: class MainActiviy extends Ac
在我的应用程序中,它们不是 FragmentActivity.java,但崩溃报告给了我以下错误 Fatal Exception: android.content.ActivityNotFoundEx
我是 Java 和 Android 的初学者,我认为这更像是一个 Java 问题,因为它在 Android 中表现出来。 我正在使用 Android 支持包 (android.support.v4.a
我有两项 Activity : MainActivity,它扩展了 FragmentActivity 并具有 ViewActivity,它只是一个 Activity,以 MainActivity 作为
我对 FragmentActivity 类有疑问当我导入包时: import android.support.v4.app.FragmentActivity; 当我将其放入代码中时,导入 Fragme
今天我尝试创建一个带有 fragment Activity 的项目。我有一个 MainActivity 范围 FragmentActivity。 MainActvity 有布局。 activity_m
我在使用 FragmentActivity 和 SupportMapFragment 时遇到了一些问题。 map 的缩放比例很不稳定。这是代码: public class GoogleMapActiv
Activity 在导入 FragmentActivity 时显示错误。 import android.support.v4.app.FragmentActivity; import andr
我的代码中有一个具有 ListView 的 Activity ,我通过适配器类控制此 ListView 。每个 ListView 中都有一个 TextView,我想通过单击每个项目(TextView)
我正在尝试创建一个使用 fragment 的应用程序,但是当我尝试在 FragmentActivity 中显示一个 Fragment 时,操作栏没有出现。 fragment Activity 类: p
我可以使用下面的代码转换到 Fragment 类,但是如何使用相同的代码转换到 FragmentActivity。 FragmentActivity activity = new ABC(); //
您好,您可以在这里查看我的代码。我的问题是:使用这段代码,我的 EditText 和我的 Button 字段为空,所以我无法对它们执行任何操作。 请你帮我访问这个按钮。对于由 eclipse 自动生成
我尝试将 Android 兼容性库(或现在称为支持库)v4 用于 pre-honeycomb android 设备。我明白,我应该使用 FragmentActivity 类,而不是使用 Fragmen
我的主题不工作我已经看到了这个How do I change the background color of the ActionBar of an ActionBarActivity using X
您好,我正在尝试将 Intent 传递给 FragmentActivity,但它不起作用。 Activity 在 FragmentActivity 的初始化中关闭。这是 Activity : publ
在我的应用程序中,我有选项卡,但现在我需要添加 Sherlock Actionbar 我知道我需要使用 extends SherlockActivity 但早期我有 FragmentActivity
我正在尝试将 ActionBar 按钮添加到 FragmentActivity,但我无法弄清楚我做错了什么。运行应用程序时,我看到的只是 ActionBar 上的默认菜单按钮,而不是我的按钮。 fra
我正在扩展类中的 FragmentActivity,该类用作我的其他 Activity 的基础 Activity 。我的问题是当我从我的基本 Activity 扩展我的其他 Activity 时,我失
我正在使用 android 示例,FragmentTabs . 比如说,有 4 个选项卡(A、B、C、D)。我使用此代码将选项卡 fragment (A) 替换为另一个 (E) FragmentTra
我是一名优秀的程序员,十分优秀!