对于这个项目,我有必须在其下显示内容的标签,并且我使用了查看寻呼机但由于某种原因,片段布局不会显示在屏幕上。我得到一个空白的屏幕,但没有错误或任何东西。我一直在谷歌搜索和搜索几个小时,甚至开始一个新项目只是为了确保它不是一个构建错误,但仍然没有找到解决我的问题的运气。 我已经做了很多次这样的例子并且使用了完全相同的步骤但是出于某种原因,这次它只是不起作用。任何帮助将不胜感激
这是我的mainActivity类
public class MainActivity extends ActionBarActivity {
Toolbar toolbar;
ViewPager myViewPager;
SlidingTabLayout mySlidingTabs;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
myViewPager = (ViewPager) findViewById(R.id.viewPager);
myViewPager.setAdapter(new MyPagerAdapter(getSupportFragmentManager(), this));
mySlidingTabs = (SlidingTabLayout) findViewById(R.id.sliding_tabs);
mySlidingTabs.setViewPager(myViewPager);
}
}
这是我的自定义适配器类
public class MyPagerAdapter extends FragmentPagerAdapter {
private Context context;
private String[] tabNames = {"Beverages", "Deli & Bakery", "Fresh Produce", "Health & Beauty", "Meat & Seafood", "Natural Foods", "Pet Care"};
public MyPagerAdapter(FragmentManager fm, Context context) {
super(fm);
this.context = context;
}
@Override
public Fragment getItem(int position) {
if (position == 0) {
return new Beverages();
}
else if (position == 1) {
return new DeliBakery();
}
return null;
}
@Override
public int getCount() {
return 2;
}
@Override
public CharSequence getPageTitle(int position) {
return tabNames[position];
}
}
这是我的主要activty.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<include
android:id="@+id/toolbar"
layout="@layout/toolbar_layout"
android:layout_height="wrap_content"
android:layout_width="match_parent" />
<!-- The Sliding tab -->
<bello.myapplication.SlidingTabLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/sliding_tabs"/>
<!-- The pager that allows us to swipe between fragments -->
<android.support.v4.view.ViewPager
android:id="@+id/viewPager"
android:layout_width="match_parent"
android:layout_height="0px"
android:layout_weight="1"
android:background="@android:color/white" />
</LinearLayout>
这是我的标签xml文件之一
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Tab fragment 1"
android:textSize="50dp"
android:padding="5dp" />
</RelativeLayout>
这是我的一个片段类
public class Beverages extends Fragment {
@Nullable
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.beverages_tab, container, false);
return view;
}
}
答案 0 :(得分:4)
当出现类似这样的奇怪事件时,请尝试使用<include>
来跟踪是否正在调用每个类/方法。
在您的情况下,它会发现您的viewpager不在屏幕中。
如果我了解您的代码,那么您的xml
代码会包含您发布的第二个<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Tab fragment 1"
android:textSize="50dp"
android:padding="5dp" />
</RelativeLayout>
代码吗?
layout_height="match_parent"
您的ViewPager
似乎正在填满屏幕上的所有空间,系统无法为layout_height="wrap_content
充气提供空间,请尝试将其更改为private const int EM_GETLINECOUNT = 0xba;
[DllImport("user32",EntryPoint = "SendMessageA",CharSet = CharSet.Ansi,SetLastError = true,ExactSpelling = true)]
private static extern int SendMessage(int hwnd,int wMsg,int wParam,int lParam);
private void rtbScript_TextChanged(object sender,EventArgs e)
{
var numberOfLines = SendMessage(rtbScript.Handle.ToInt32(),EM_GETLINECOUNT,0,0);
this.rtbScript.Height = (rtbScript.Font.Height + 2) * numberOfLines;
if(this.rtbScript.Height>810)
{
this.rtbScript.Height = 810;
}
}
,您应该完成。
如果没有,请尝试更改ViewPager的背景,以检查它是否在屏幕上并且没有被其他内容隐藏。
答案 1 :(得分:0)
找出问题所在。 viewpager背景颜色和选项卡的背景颜色相同,因此它看起来像是一个黑色活动。因此,对于那些有相同问题的其他人,请尝试更改tabs.xml的文本颜色或更改viewpager的背景