我尝试在键盘打开时以不同方式设置我的片段的调整,但目前我没有正面结果。输入代码
目标是只重新调整两个片段中的一个。
这是一个例子
活动
public class MainActivity extends Activity {
...
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
if (savedInstanceState == null) {
getFragmentManager().beginTransaction()
.add(R.id.frame1, new PlaceholderFragment())
.commit();
getFragmentManager().beginTransaction()
.add(R.id.frame2, new PlaceholderFragment1())
.commit();
}
}
...
片段:
public static class PlaceholderFragment extends Fragment {
public PlaceholderFragment() {
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// Context contextThemeWrapper = new ContextThemeWrapper(getActivity(), R.style.noresize);
// LayoutInflater localInflater = inflater.cloneInContext(contextThemeWrapper);
getActivity().getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_NOTHING);
return inflater.inflate(R.layout.fragment_main, container, false);
}
}
public static class PlaceholderFragment1 extends Fragment {
public PlaceholderFragment1() {
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
getActivity().getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_PAN);
View rootView = inflater.inflate(R.layout.fragment_main_2, container, false);
return rootView;
}
}
活动的主要布局:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity"
tools:ignore="MergeRootFrame"
android:orientation="horizontal"
>
<FrameLayout
android:id="@+id/frame1"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="match_parent">
<FrameLayout
android:id="@+id/frame2"
android:background="#30000000"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="match_parent">
</LinearLayout>
确定看到我在活动上重新定义了两次SoftInputMode,这不大可能成功。 所以,是否有可能做类似碎片的事情.getWindows.setSoftInputMode(...
抱歉我的英语......答案 0 :(得分:1)
您的片段是否同时在屏幕上?如果是这样,则根据哪个片段触发要打开的软输入,不可能有不同的行为,因为该设置仅适用于整个窗口。
另一方面,如果您一次只在屏幕上显示其中一个片段,则方法onCreateView()
可能不适合此代码。您可能想尝试将其放入片段方法onResume()
和onPause()
中。在onResume()
中保存现有的软输入模式并将其设置为您想要的模式,并在onPause()
中将软输入模式恢复为之前的状态。