效果图
简单布局展示 没有任何功能
只做了 打开/关闭 侧拉提示
XML布局页面
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout 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"
tools:context=".MainActivity"
android:orientation="vertical"
android:id="@+id/ddd">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<FrameLayout
android:id="@+id/frag"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="9"></FrameLayout>
<RadioGroup
android:id="@+id/group"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:orientation="horizontal">
<RadioButton
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:id="@+id/but1"
android:text="首页"
android:gravity="center"
android:button="@null"/>
<RadioButton
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:id="@+id/but2"
android:text="视频"
android:gravity="center"
android:button="@null"/>
<RadioButton
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:id="@+id/but3"
android:text="我的"
android:gravity="center"
android:button="@null"/>
</RadioGroup>
</LinearLayout>
<LinearLayout
android:layout_width="250dp"
android:layout_height="match_parent"
android:orientation="vertical"
android:layout_gravity="left"
android:background="#ddd">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<ImageView
android:layout_width="80dp"
android:layout_height="80dp"
android:src="@drawable/imggg"
android:layout_marginLeft="10dp"/>
<EditText
android:layout_marginTop="50dp"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="抱着回忆旅行"/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<EditText
android:layout_marginTop="50dp"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="激活会员"/>
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="个性装扮"/>
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="QQ钱包"/>
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="我的收藏"/>
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="我的相册"/>
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="我的文件"/>
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="免流量特权"/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="50dp"
android:textSize="15sp"
android:text="设置"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="50dp"
android:textSize="15sp"
android:layout_marginLeft="5dp"
android:text="夜间"
android:textColor="#44f"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="50dp"
android:textSize="15sp"
android:layout_marginLeft="5dp"
android:text="北京"
android:textColor="#f44"/>
</LinearLayout>
</LinearLayout>
</android.support.v4.widget.DrawerLayout>
主页面代码MainActivity
public class MainActivity extends BaseActivity {
private FrameLayout frag;
private RadioGroup group;
private FragmentTransaction fragmentTransaction;
private FragmentA fragmentA;
private FragmentB fragmentB;
private FragmentC fragmentC;
private DrawerLayout ddd;
@Override
protected void initData() {
ddd.addDrawerListener(new DrawerLayout.DrawerListener() {
@Override
public void onDrawerSlide(@NonNull View view, float v) {
}
@Override
public void onDrawerOpened(@NonNull View view) {
Toast.makeText(MainActivity.this,"打开",Toast.LENGTH_SHORT).show();
}
@Override
public void onDrawerClosed(@NonNull View view) {
Toast.makeText(MainActivity.this,"关闭",Toast.LENGTH_SHORT).show();
}
@Override
public void onDrawerStateChanged(int i) {
}
});
}
@Override
protected void initView() {
ddd = findViewById(R.id.ddd);
}
@Override
protected int getLayoutId() {
return R.layout.activity_main;
}
}