我一直在努力将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(例如白色)?实际上它没有显示,除非我在其中放置一些内容并且我必须放置一个占位符图像。
提前致谢!
答案 0 :(得分:0)
是的,可以只使用简单的背景,不要使用你正在使用的库但是使用hdodenof,你可以试试这个:
app:civ_fill_color="@android:color/white"
还可以尝试将其添加到CircularImageView
android:layout_alignParentRight="true"
android:layout_alignParentEnd="true"
作为RTL布局的备份支持,在创建从RTL而不是LTR渲染布局的应用时使用。