我想在另一个片段(ProfileFragment)中使用PreferenceFragmentCompat
。这是我的fragment_profile
布局:
<?xml version="1.0" encoding="utf-8"?>
<layout 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">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<android.support.design.widget.AppBarLayout
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
style="@style/ToolbarStyle"
android:theme="@style/ToolbarStyle"
app:popupTheme="@style/ToolbarStyle"
app:title="@string/profile">
</android.support.v7.widget.Toolbar>
</android.support.design.widget.AppBarLayout>
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.constraint.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/cash"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/ktpay_cash_top_margin"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<TextView
android:id="@+id/balance"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@color/black"
android:textStyle="bold"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toBottomOf="@+id/cash"
tools:text="23423" />
<TextView
android:id="@+id/tgSymbol"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginBottom="@dimen/bottom_margin_tenge_symbol"
android:layout_marginLeft="@dimen/margin_left_tenge_symbol"
android:gravity="bottom"
android:text="@string/tenge_symbol"
app:layout_constraintBottom_toBottomOf="@+id/balance"
app:layout_constraintLeft_toRightOf="@+id/balance" />
<LinearLayout
android:id="@+id/wallet_recharge_layout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="5dp"
android:clickable="true"
android:focusable="true"
android:foreground="?attr/selectableItemBackground"
android:orientation="horizontal"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toBottomOf="@+id/ktpay_balance">
<ImageView
android:id="@+id/wallet_icon"
android:layout_width="@dimen/wallet_icon_size"
android:layout_height="@dimen/wallet_icon_size"
android:src="@drawable/add_money" />
<TextView
android:id="@+id/recharge_wallet"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:layout_marginLeft="@dimen/margin_left_from_wallet_icon"
android:text="@string/recharge"
android:textColor="@color/recharge_color" />
</LinearLayout>
<android.support.constraint.ConstraintLayout
android:id="@+id/bonus_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="20dp"
android:background="@drawable/bonus_layout"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toBottomOf="@+id/wallet_recharge_layout">
<TextView
android:id="@+id/bonusText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="5dp"
android:text="@string/bonuses_kt"
android:textColor="@color/black"
app:layout_constraintBottom_toTopOf="@+id/amount_bonus"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<TextView
android:id="@+id/amount_bonus"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="5dp"
android:textColor="@color/black"
android:textSize="@dimen/bonus_amount_text_size"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toBottomOf="@+id/bonusText"
tools:text="123213 тг" />
</android.support.constraint.ConstraintLayout>
<FrameLayout
android:id="@+id/appSettings"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toBottomOf="@+id/bonus_layout" />
</android.support.constraint.ConstraintLayout>
</ScrollView>
</LinearLayout>
我将FrameLayout
从app_settings
开始的ID SettingsFragment
添加到PreferenceFragmentCompat
。一切正常,除了加载fragment_profile
时,其内容已经滚动到屏幕底部。我不希望它发生。当我从ScrollView
中删除fragment_profile
时,它可以正常工作。但是我需要ScrollView
。我认为可能的原因之一是PreferenceFragmentCompat
使用RecyclerView
。它会以某种方式影响我的UI,因为现在fragment_profile
包含ScrollView
,而其中RecyclerView
包含setNestedScrollingEnabled
。我以为我需要在RecyclerView
内的PreferenceFragmentCompat
中调用RecyclerView
,但不知道如何引用该ScrollView
。因此,基本的问题是,fragment_profile
中的<
在显示时为何滚动到底部?有什么可能导致此问题的原因?
答案 0 :(得分:0)
它可以通过查看该活动的视图来以编程方式处理视图来进行管理
ScrollView scroll_view=(Scrollview) findviewbyid(R.id.scrollview);
scroll_view.fullScroll(ScrollView.FOCUS_UP);
答案 1 :(得分:0)
Scrollview专注于打开片段。因此,为了确保它不会在片段打开时滚动,请将以下属性添加到父uid
。
LinearLayout