gpt4 book ai didi

java - 打开应用程序时黑屏/空白屏幕

转载 作者:行者123 更新时间:2023-11-30 01:53:18 27 4
gpt4 key购买 nike

我已成功实现 Google 的 SlidingTabLayout,它按预期工作,但我的 View 在其下方显示黑屏。像这样:

enter image description here

这是我的 Activity 主布局文件夹:

<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"

android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:elevation= "16dp">

<LinearLayout
android:layout_width="220dp"
android:layout_height="match_parent"
android:orientation="vertical"
android:layout_gravity="start"
android:id = "@+id/stickylist">

<ViewFlipper
android:id="@+id/flipper1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:flipInterval="2000"
android:inAnimation="@android:anim/fade_in"
android:outAnimation="@android:anim/fade_out"
>

<ImageView
android:src="@drawable/front"
android:layout_width="220dp"
android:layout_height="180dp"
android:contentDescription="@string/str_img1"
/>

<ImageView
android:src="@drawable/field"
android:layout_width="220dp"
android:layout_height="180dp"
android:contentDescription="@string/str_img2"
/>

<ImageView
android:src="@drawable/cafeteria"
android:layout_width="220dp"
android:layout_height="180dp"
android:contentDescription="@string/str_img3"
/>
</ViewFlipper>
<se.emilsjolander.stickylistheaders.StickyListHeadersListView
android:id="@+id/left_drawer"
android:layout_width="220dp"
android:layout_height="fill_parent"
android:layout_gravity="start"
android:choiceMode="singleChoice"
android:dividerHeight="1dp"
android:divider="@drawable/customdrawershape"
/>
</LinearLayout>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:id="@+id/fragment_container"
android:layout_width="wrap_content"
android:layout_height="fill_parent">

</FrameLayout>
</android.support.v4.widget.DrawerLayout>

然后这是我在 SlidingTabsBasicFragment 中实现我的 PagerAdapter 的地方:

  @Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {

view = inflater.inflate(R.layout.tabs, container, false);
....}

tabs.xml:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<xxx.xxx.xxx.SlidingTabLayout
android:id="@+id/pager_header"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:elevation="16dp"/>
<android.support.v4.view.ViewPager
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_weight ="1"
android:layout_height="0dp"
>

</android.support.v4.view.ViewPager>

</LinearLayout>

这是我在 Activity 类中调用 fragment 的地方:

 android.support.v4.app.FragmentManager manager = getSupportFragmentManager();
FragmentTransaction transaction = manager.beginTransaction();
transaction.addToBackStack(null);
SlidingTabsBasicFragment fragment = new SlidingTabsBasicFragment();
transaction.replace(R.id.fragment_container, fragment);
transaction.commit();

我确实有其他应该显示的主要 Activity 正在进行的同步 fragment 。这是怎么回事?以下是该 fragment 的代码,对显示的内容和 fragment 容器的框架布局使用不同的布局。

    manager = getChildFragmentManager();
FragmentTransaction transaction = manager.beginTransaction();
transaction.addToBackStack(null);
EventFragment fragment = new EventFragment();
transaction.add(R.id.fragment_container, fragment);
transaction.commit();

我试图显示但未显示的 View 的 fragment 容器是:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:id="@+id/fragment_container"
android:layout_width="wrap_content"
android:layout_height="fill_parent">

</FrameLayout>

这是第一个 fragment 的布局,它为从不同布局集成的每个 ListView 图 block 使用自定义适配器。

<RelativeLayout

xmlns:ads="http://schemas.android.com/apk/res-auto"
xmlns:android="http://schemas.android.com/apk/res/android"
android:animateLayoutChanges="true"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:baselineAligned="false"
android:background="@drawable/background">


<TextView
android:id= "@+id/text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/string5"
android:layout_centerHorizontal="true"
android:layout_below= "@+id/progressBar"
android:textColor="#FFD600"
android:textSize="20sp"/>
<ProgressBar
android:id="@+id/progressBar"
style="?android:attr/progressBarStyleLarge"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:color="#42A5F5"
android:indeterminateTint="#42A5F5"
android:indeterminateTintMode="multiply"/>


<com.twotoasters.jazzylistview.JazzyListView
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:id="@+id/listView"
android:divider="@android:color/transparent"
android:dividerHeight="5dp"
android:paddingRight="10dp"
android:paddingLeft="10dp"
android:layout_above="@+id/layout"/>
</RelativeLayout>

编辑:

好的,现在我可以通过执行以下操作让它显示在屏幕上:

 @Override
public Object instantiateItem(ViewGroup container, int position) {
// Inflate a new layout from our resources
switch (position){
case 0:
view = getActivity().getLayoutInflater().inflate(R.layout.eventlistview,
container, false);


new Event();
break;
case 1:
view = getActivity().getLayoutInflater().inflate(R.layout.twitter,
container, false);
new Twitter();
break;
case 2:
view = getActivity().getLayoutInflater().inflate(R.layout.stafflistview,
container, false);
new Staff();
break;
case 3:
view = getActivity().getLayoutInflater().inflate(R.layout.powerschool,
container, false);
new powerschool();
break;
}
// Add the newly created View to the ViewPager
container.addView(view);

// Return the View
return view;
}

但最终,我有代码的 fragment 布局的进度条应该会消失,并且会显示一个 ListView 。但是,它只会永远显示此布局,即使后台还有更多操作。有什么想法吗?

如果您只能做一个布局,那么这是非常有限的。严重地?这很糟糕。

最佳答案

疯狂的猜测...

在您的 tabs.xml 中:您的 ViewPager 的权重为 android:layout_weight ="1",高度为 android:layout_height="0dp" 您的 slidingtablayout 的高度为 wrap_content 而他们的父亲没有 weightsum.. 将他们父亲的 weightsum 更改为 1 并查看..

如果有帮助请告诉我

关于java - 打开应用程序时黑屏/空白屏幕,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32682877/

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