-1

几天来,我一直在努力尝试将 CircularImageView 移动到工具栏的右侧,但没有成功。

我想让它向右且更居中(即不触及工具栏边缘),但我做不到。仅供参考,我尝试同时使用 mikhaellopez 和 hdodenhof 库,但均未成功。

这是我尝试过的(在 CircularImageView 中使用占位符图像):

<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"

    android:id="@+id/page_toolbar"
    android:layout_width="match_parent"
    android:layout_height="?attr/actionBarSize"
    android:layout_alignParentTop="true"
    android:background="@color/primary"
    android:elevation="4dp"
    android:theme="@style/ThemeOverlay.AppCompat.ActionBar"
    app:popupTheme="@style/ThemeOverlay.AppCompat.Light">

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">

    <com.mikhaellopez.circularimageview.CircularImageView
        xmlns:app="http://schemas.android.com/apk/res-auto"
        android:id="@+id/profile_pic"
        android:layout_width="wrap_content"
        android:layout_height="48dp"
        android:layout_alignParentEnd="true"
        android:src="@drawable/ic_seed_48dp"
        app:civ_border_color="#FFFFFF"
        app:civ_border_width="3dp" />

    </RelativeLayout>
</android.support.v7.widget.Toolbar>
public class HomepageActivity extends AppCompatActivity {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.homepage_activity);
        pageToolbar = (Toolbar) findViewById(R.id.page_toolbar);
        setSupportActionBar(pageToolbar);
        ...
}

这是结果

另一个问题:是否可以让 CircularImageView 具有纯背景(例如白色)?事实上,除非我在其中放入一些东西并且我必须放置一个占位符图像,否则它不会显示出来。

提前致谢!

4

1 回答 1

0

是的,可以只使用纯背景,而不是关于您正在使用的库,但使用 hdodenof,您可以尝试以下操作:

app:civ_fill_color="@android:color/white" 

也尝试将此添加到您的CircularImageView

android:layout_alignParentRight="true"

android:layout_alignParentEnd="true"是作为 RTL 布局的备份支持,在创建从 RTL 而不是 LTR 呈现布局的应用程序时使用。

于 2017-10-08T18:34:55.630 回答