我在android开发中是菜鸟,我在密码学入门课程中,所以我决定将两者结合起来并制作此应用。我使用TabLayout为每种密码方法(RSA和XOR)制作一个标签,并为指令和帮助制作一个标签。一切工作正常,直到我按照说明在“帮助”选项卡中添加了scrollView。scrollView不会滚动,我也不知道为什么,我一直在网上搜索以寻求帮助,并尽一切可能的解决方案,例如更改ScrollView属性的宽度和高度,我被卡住了,请问您能帮我吗?
屏幕截图
-----编辑3/02/16 -----
我的main_activity.xml
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context="com.example.usuario.chatparritos.MainActivity">
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
android:elevation="4dp"
android:theme="@style/ThemeOverlay.AppCompat.ActionBar"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"/>
<android.support.design.widget.TabLayout
android:id="@+id/tab_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/toolbar"
android:background="?attr/colorPrimary"
android:elevation="6dp"
android:minHeight="?attr/actionBarSize"
app:tabMode="fixed"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"/>
<android.support.v4.view.ViewPager xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/toolbar"
tools:context="net.voidynullness.android.tabitytabs.TabLayoutActivity"
android:background="#ffffff"/>
</android.support.design.widget.AppBarLayout>
<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|end"
android:layout_margin="@dimen/fab_margin"
android:src="@android:drawable/ic_dialog_info"/>
</android.support.design.widget.CoordinatorLayout>
----- //编辑3/02/16 -----
这是我的tab_fragment_3.xml
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:fillViewport="true"
android:focusableInTouchMode="true"
android:focusable="true"
android:scrollbars="vertical"
android:id="@id/scrollView">
<LinearLayout android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:background="#FFFFFF"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:gravity="left">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/title_chatparritos"
android:textSize="20dp"
android:layout_marginTop="15dp"
android:textAppearance="@style/TextAppearance.AppCompat.Title"/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/body_chatparritos"
android:textAppearance="@style/TextAppearance.AppCompat.Body1"
android:textSize="15dp"
android:layout_marginTop="9dp"
android:background="@drawable/blue_cornered_textview"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/link_khan"
android:layout_marginTop="-19dp"
android:textAppearance="@style/TextAppearance.Design.Hint"
android:textSize="15dp"
android:linksClickable="true"
android:id="@+id/linkAcademy"
android:layout_gravity="center_horizontal"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/title_xor"
android:textSize="20dp"
android:layout_marginTop="25dp"
android:textAppearance="@style/TextAppearance.AppCompat.Title"/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/body_xor"
android:textAppearance="@style/TextAppearance.AppCompat.Body1"
android:textSize="15dp"
android:layout_marginTop="9dp"
android:background="@drawable/blue_cornered_textview"/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/instructions_xor"
android:textAppearance="@style/TextAppearance.AppCompat.Body1"
android:textSize="15dp"
android:layout_marginTop="15dp"
android:background="@drawable/yellow_cornered_textview"
android:textStyle="bold"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/title_rsa"
android:textSize="20dp"
android:layout_marginTop="25dp"
android:textAppearance="@style/TextAppearance.AppCompat.Title"/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/body_rsa"
android:textAppearance="@style/TextAppearance.AppCompat.Body1"
android:textSize="15dp"
android:layout_marginTop="9dp"
android:background="@drawable/blue_cornered_textview"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/link_rsa"
android:layout_marginTop="-19dp"
android:textAppearance="@style/TextAppearance.Design.Hint"
android:textSize="15dp"
android:linksClickable="true"
android:id="@+id/linkRSA"
android:layout_gravity="center_horizontal"/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/instructions_rsa"
android:textAppearance="@style/TextAppearance.AppCompat.Body1"
android:textSize="15dp"
android:layout_marginTop="15dp"
android:background="@drawable/yellow_cornered_textview"
android:textStyle="bold"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/title_numeros"
android:textSize="20dp"
android:layout_marginTop="25dp"
android:textAppearance="@style/TextAppearance.AppCompat.Title"/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/body_numeros"
android:textAppearance="@style/TextAppearance.AppCompat.Body1"
android:textSize="15dp"
android:layout_marginTop="9dp"
android:background="@drawable/blue_cornered_textview"/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/nota"
android:textAppearance="@style/TextAppearance.AppCompat.Body1"
android:textSize="15dp"
android:layout_marginTop="30dp"
android:layout_marginBottom="30dp"
android:background="@drawable/red_cornered_textview"/>
</LinearLayout>
</ScrollView>
这是我的TabFragment3.java
public class TabFragment3 extends Fragment {
TextView linkAcademy;
TextView linkRsa;
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.tab_fragment_3, container, false);
linkAcademy = (TextView) view.findViewById(R.id.linkAcademy);
linkAcademy.setMovementMethod(LinkMovementMethod.getInstance());
linkRsa = (TextView) view.findViewById(R.id.linkRSA);
linkRsa.setMovementMethod(LinkMovementMethod.getInstance());
return view;
}
我的PagerAdapter.java
public class PagerAdapter extends FragmentStatePagerAdapter {
int mNumOfTabs;
public PagerAdapter(FragmentManager fm, int numOfTabs) {
super(fm);
this.mNumOfTabs = numOfTabs;
}
@Override
public Fragment getItem(int position) {
switch (position) {
case 0:
TabFragment1 tab1 = new TabFragment1();
return tab1;
case 1:
TabFragment2 tab2 = new TabFragment2();
return tab2;
case 2:
TabFragment3 tab3 = new TabFragment3();
return tab3;
default:
return null;
}
}
@Override
public int getCount() {
return mNumOfTabs;
}
还有我的MainActivity.java
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
TabLayout tabLayout = (TabLayout) findViewById(R.id.tab_layout);
tabLayout.addTab(tabLayout.newTab().setText("XOR"));
tabLayout.addTab(tabLayout.newTab().setText("RSA"));
tabLayout.addTab(tabLayout.newTab().setText(R.string.tab_help));
tabLayout.setTabGravity(TabLayout.GRAVITY_FILL);
final ViewPager viewPager = (ViewPager) findViewById(R.id.pager);
final PagerAdapter adapter = new PagerAdapter
(getSupportFragmentManager(), tabLayout.getTabCount());
viewPager.setAdapter(adapter);
viewPager.addOnPageChangeListener(new TabLayout.TabLayoutOnPageChangeListener(tabLayout));
tabLayout.setOnTabSelectedListener(new TabLayout.OnTabSelectedListener() {
@Override
public void onTabSelected(TabLayout.Tab tab) {
viewPager.setCurrentItem(tab.getPosition());
}
@Override
public void onTabUnselected(TabLayout.Tab tab) {
}
@Override
public void onTabReselected(TabLayout.Tab tab) {
}
});
FloatingActionButton fab = (FloatingActionButton) findViewById(R.id.fab);
fab.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Snackbar.make(view, R.string.fab_info, Snackbar.LENGTH_LONG)
.setAction("Action", null).show();
}
});
主要的问题是在你的main_activity.xml
。尝试复制我从chrisbanes项目获得的布局,让我们看看会发生什么:
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/main_content"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.design.widget.AppBarLayout
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
app:layout_scrollFlags="scroll|enterAlways" />
<android.support.design.widget.TabLayout
android:id="@+id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</android.support.design.widget.AppBarLayout>
<android.support.v4.view.ViewPager
android:id="@+id/viewpager"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="end|bottom"
android:layout_marginRight="24dp"
android:layout_marginBottom="24dp"
app:fabSize="normal"
app:borderWidth="0dp"
app:elevation="6dp"
android:src="@drawable/ic_done"/>
</android.support.design.widget.CoordinatorLayout>
在某些情况下,使用ScrollView
内CoordinatorLayout
可能会导致屏幕无法滚动。因此请NestedScrollView
改用。
我是android编程的新手,我正在尝试制作一个订购应用程序。我已经在两个不同的项目中成功创建了滑动菜单及其片段和选项卡布局。现在的困境是,当我在片段活动中添加选项卡布局的代码时,出现了一个错误。它表示未使用选项卡布局导入或无法解析符号“TabLayout”。 这是我的片段的布局文件: slider\u fragment2。xml 下面是片段java文件:Slider\u Fragment2。Ja
我有个问题。我有一个片段,里面包含了viewpager。对于viewpager,我使用FragmentPagerAdapter扩展。每个寻呼机片段内部都有回收器视图。问题是,在
现在,我想使用Parse添加服务器拉请求,将列表中的数据添加到适配器,并在用户查看页面后填充recyclerview,这样 1)我是否应该添加setUserVisisbleHint中的所有代码,并只添加0.5秒延迟,以便在调用setContentView后执行它,以确保不出现空指针异常错误或 2)是否有更好的方法/其他功能可以实现相同的功能?
主要内容:本节引言:,可能遇到的一些需求,本节小结:本节引言: 本节带来的是Android基本UI控件中的第十个:ScrollView(滚动条),或者我们应该叫他 竖直滚动条,对应的另外一个水平方向上的滚动条:HorizontalScrollView,先来一发官方文档 的链接:ScrollView,我们可以看到类的结构如下: 嘿嘿,原来是一个FrameLayout的容器,不过在他的基础上添加了滚动,允许显示的比实际多的内容! 另外,只能够往里面放置
到这里基本上你已经掌握了 Android 所有的常用控件,不知道有没有这样的疑惑:如果控件太多,在有的小尺寸手机上将屏幕占满了怎么办?是不是有一种通用的解决方法?没错,本节的主角——ScrollView 就是来帮你解决这个问题的,它让你的控件能够在屏幕显示不足的情况下,支持滚动展示。 1. ScrollView 的特性 ScrollView 是一种可以有效解决由于 View 过多显示不全的布局,它
可以水平和垂直两个方向翻页滚动的ScrollView,用的是atpagingview。 [Code4App.com]