问题描述
- 动态的使用Fragment,底部四个按钮的布局怎么写
-
原文链接http://blog.csdn.net/lmj623565791/article/details/37970961
我是这样写的但是选中底部的按钮后无效果
<?xml version="1.0" encoding="utf-8"?>
android:baselineAligned="false"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" ><LinearLayout android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="1" android:id="@+id/tab_bottom_weixin" > <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/button1" android:onClick="onClick" > </Button> </LinearLayout> <LinearLayout android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="1" android:id="@+id/tab_bottom_friend"> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/button2" android:onClick="onClick"> </Button> </LinearLayout> <LinearLayout android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="1" > <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/button3"> </Button> </LinearLayout> <LinearLayout android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="1" > <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/button4"> </Button> </LinearLayout> <android.support.v4.view.ViewPager android:id="@+id/vPager" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center" android:layout_weight="1.0" android:background="#000000" android:flipInterval="30" android:persistentDrawingCache="animation" />
解决方案
定义一个RadioGroup就可以了。
解决方案二:
还是没搞定啊。不懂他为何要给LinearLayout注册监听器 而不是button
public class MainActivity extends Activity implements OnClickListener
{
private LinearLayout mTabWeixin;
private LinearLayout mTabFriend;
private ContentFragment mWeixin;
private FriendFragment mFriend;
@Override
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_NO_TITLE);
setContentView(R.layout.activity_main);
// 初始化控件和声明事件
mTabWeixin = (LinearLayout) findViewById(R.id.tab_bottom_weixin);
mTabFriend = (LinearLayout) findViewById(R.id.tab_bottom_friend);
mTabWeixin.setOnClickListener(this);
mTabFriend.setOnClickListener(this);
// 设置默认的Fragment
setDefaultFragment();
}
时间: 2024-11-01 12:30:16