我正在开发一个多片段应用程序并且无法获得任何好的信息如何做到这一点:屏幕顶部是一个标签栏,您可以在其中切换到不同的片段。下面是我正在处理的片段。我想在最低层上绘制内容,并在上方带有按钮的 EditText。绘制的内容必须在按钮单击时可更新。我目前的想法是将内容元素添加到框架布局并绘制到其中。框架布局:
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@color/frag_color_bg">
<!-- Content element here -->
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">
<EditText
android:id="@+id/frag_text1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:background="@color/frag_color_te_bg"
android:hint="@string/frag_srvhint"
android:padding="2dp"
android:textColor="@color/frag_text1"
android:textSize="12sp">
</EditText>
<Button
android:id="@+id/frag_plotbtn"
android:background="@drawable/frag_blue_btn"
android:text="@string/frag_plotlabel"
style="@style/frag_btn"
android:layout_marginTop="0dp">
</Button>
</LinearLayout>
</FrameLayout>
这甚至可能吗?将内容元素放在 map.xml 中(代替注释)并使用 Java 绘制到其中?如果这是可能的,我必须把哪个内容元素放在那里?一个看法?你有任何示例代码如何做到这一点?
如果这是不可能的,那么实现这一点的最佳方法是什么?
欢迎任何想法或代码示例。我是 Android 新手,几天来一直在寻找解决方案,但网上的示例并不那么清楚......
非常感谢您的时间和帮助!
类本身:
public MapFragment extends Fragment {
private final static String LOG_TAG = "Map";
private View mContentView;
private EditText mTxt;
private Activity mAct;
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
if (container == null) {
return null;
}
mAct = (Activity) getActivity();
mContentView = (View) inflater.inflate(R.layout.map, container,
false);
try {
mTxt = (EditText) mContentView.findViewById(R.id.frag_text1);
mContentView.findViewById(R.id.frag_plotbtn).setOnClickListener(
myOnClickListener);
} catch (Exception e) {
Log.w(LOG_TAG, e);
}
return mContentView;
}
public OnClickListener myOnClickListener = new OnClickListener() {
public void onClick(View v) {
switch (v.getId()) {
// Plot button
case R.id.frag_plotbtn:
// Update drawing here;
break;
default:
break;
}
}
};