1.闪屏页图标修改
2.萌新页透明通知栏适配
This commit is contained in:
@@ -915,6 +915,7 @@
|
|||||||
android:name=".ui.widget.LevelUpDialog"
|
android:name=".ui.widget.LevelUpDialog"
|
||||||
android:launchMode="singleTop"
|
android:launchMode="singleTop"
|
||||||
android:theme="@style/dialogactivity" />
|
android:theme="@style/dialogactivity" />
|
||||||
|
|
||||||
<activity android:name=".home.activity.NewUserListActivity" />
|
<activity android:name=".home.activity.NewUserListActivity" />
|
||||||
<activity
|
<activity
|
||||||
android:name=".ui.widget.RecallDialog"
|
android:name=".ui.widget.RecallDialog"
|
||||||
|
Binary file not shown.
Before Width: | Height: | Size: 24 KiB |
BIN
app/src/main/res/drawable-xxhdpi/splash_logo.png
Normal file
BIN
app/src/main/res/drawable-xxhdpi/splash_logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 130 KiB |
Binary file not shown.
Before Width: | Height: | Size: 41 KiB |
@@ -10,6 +10,7 @@ import android.widget.ImageView;
|
|||||||
import androidx.fragment.app.FragmentManager;
|
import androidx.fragment.app.FragmentManager;
|
||||||
import androidx.fragment.app.FragmentTransaction;
|
import androidx.fragment.app.FragmentTransaction;
|
||||||
|
|
||||||
|
import com.netease.nim.uikit.StatusBarUtil;
|
||||||
import com.yizhuan.erban.R;
|
import com.yizhuan.erban.R;
|
||||||
import com.yizhuan.erban.base.BaseActivity;
|
import com.yizhuan.erban.base.BaseActivity;
|
||||||
import com.yizhuan.tutu.room_chat.event.ClickRootViewEvent;
|
import com.yizhuan.tutu.room_chat.event.ClickRootViewEvent;
|
||||||
@@ -49,7 +50,14 @@ public class RoomNewbieActivity extends BaseActivity{
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected boolean needSteepStateBar() {
|
protected boolean needSteepStateBar() {
|
||||||
return false;
|
return !mIsInRoom;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void setStatusBar() {
|
||||||
|
super.setStatusBar();
|
||||||
|
StatusBarUtil.transparencyBar(this);
|
||||||
|
StatusBarUtil.StatusBarLightMode(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@@ -5,6 +5,7 @@
|
|||||||
android:id="@+id/root_view"
|
android:id="@+id/root_view"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
|
android:paddingTop="27dp"
|
||||||
tools:background="@color/color_666666">
|
tools:background="@color/color_666666">
|
||||||
|
|
||||||
<LinearLayout
|
<LinearLayout
|
||||||
@@ -17,42 +18,39 @@
|
|||||||
<FrameLayout
|
<FrameLayout
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:orientation="horizontal"
|
android:orientation="horizontal">
|
||||||
>
|
|
||||||
|
|
||||||
<LinearLayout
|
<LinearLayout
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:orientation="vertical"
|
android:layout_gravity="center_horizontal"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:layout_gravity="center_horizontal">
|
android:orientation="vertical">
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginTop="@dimen/dp_15"
|
||||||
android:text="@string/find_new"
|
android:text="@string/find_new"
|
||||||
android:textColor="@color/color_333333"
|
android:textColor="@color/color_333333"
|
||||||
android:textSize="@dimen/dp_18"
|
android:textSize="@dimen/dp_18" />
|
||||||
android:layout_marginTop="@dimen/dp_15"
|
|
||||||
/>
|
|
||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:text="每日更新推荐"
|
android:text="每日更新推荐"
|
||||||
android:textColor="@color/color_999999"
|
android:textColor="@color/color_999999"
|
||||||
android:textSize="@dimen/dp_13"
|
android:textSize="@dimen/dp_13" />
|
||||||
/>
|
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
||||||
<ImageView
|
<ImageView
|
||||||
android:id="@+id/iv_back"
|
android:id="@+id/iv_back"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:padding="@dimen/dp_8"
|
|
||||||
android:src="@drawable/arrow_left"
|
|
||||||
android:layout_marginStart="@dimen/dp_15"
|
|
||||||
android:layout_gravity="center_vertical"
|
android:layout_gravity="center_vertical"
|
||||||
/>
|
android:layout_marginStart="@dimen/dp_15"
|
||||||
|
android:padding="@dimen/dp_8"
|
||||||
|
android:src="@drawable/arrow_left" />
|
||||||
|
|
||||||
|
|
||||||
</FrameLayout>
|
</FrameLayout>
|
||||||
|
Reference in New Issue
Block a user