我正在设计一个报价应用程序,并且我在一个页面(活动)中有这么多的报价,所以我希望在每个textview之后有一个小部件工具栏和4个共享按钮,我通过xml做到了这一点,我想通过在java活动,因此编码长度将减少,请为此提供正确的解决方案,并请注意这些图片和我的代码
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout 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"
android:background="#000000"
tools:context="technoapps4.shayari_vayari.second">
<ScrollView
android:layout_width="0dp"
android:layout_height="0dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintHorizontal_bias="0.0"
app:layout_constraintHorizontal_weight="1"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.0">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
tools:layout_editor_absoluteY="0dp"
tools:layout_editor_absoluteX="8dp">
<TextView
android:id="@+id/textView"
android:onClick="tv"
android:text="@string/Funny1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="10dp"
android:textColor="#fff"
android:textIsSelectable="true"
android:textSize="20sp"/>
<android.support.v7.widget.Toolbar
android:id="@+id/tb"
android:layout_width="match_parent"
android:layout_marginTop="05dp"
android:layout_height="match_parent"
android:background="#fff">
</android.support.v7.widget.Toolbar>
<Button
android:id="@+id/copy1"
android:onClick="copy1"
android:layout_marginLeft="08dp"
android:layout_marginTop="-50dp"
android:layout_width="56dp"
android:layout_height="46dp"
android:background="@drawable/copy" />
<Button
android:id="@+id/whatsapp1"
android:onClick="whatsapp1"
android:layout_marginLeft="90dp"
android:layout_marginTop="-48dp"
android:layout_width="56dp"
android:layout_height="46dp"
android:background="@drawable/whatsapp" />
<Button
android:id="@+id/fb1"
android:onClick="fb1"
android:layout_marginLeft="180dp"
android:layout_marginTop="-46dp"
android:layout_width="56dp"
android:layout_height="46dp"
android:background="@drawable/facebook" />
<Button
android:id="@+id/share1"
android:onClick="share1"
android:layout_marginLeft="275dp"
android:layout_marginTop="-46dp"
android:layout_width="56dp"
android:layout_height="46dp"
android:background="@drawable/share" />
<TextView
android:id="@+id/textView1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="20dp"
android:text="@string/Funny2"
android:textColor="#fff"
android:textIsSelectable="true"
android:textSize="20sp" />
<android.support.v7.widget.Toolbar
android:layout_width="match_parent"
android:layout_marginTop="05dp"
android:layout_height="match_parent"
android:background="#fff">
</android.support.v7.widget.Toolbar>
<Button
android:id="@+id/copy2"
android:onClick="copy2"
android:layout_marginLeft="08dp"
android:layout_marginTop="-50dp"
android:layout_width="56dp"
android:layout_height="46dp"
android:background="@drawable/copy" />
<Button
android:id="@+id/what2"
android:onClick="whatsapp2"
android:layout_marginLeft="90dp"
android:layout_marginTop="-48dp"
android:layout_width="56dp"
android:layout_height="46dp"
android:background="@drawable/whatsapp" />
<Button
android:id="@+id/fb2"
android:layout_marginLeft="180dp"
android:onClick="fb2"
android:layout_marginTop="-46dp"
android:layout_width="56dp"
android:layout_height="46dp"
android:background="@drawable/facebook" />
<Button
android:id="@+id/share2"
android:onClick="share2"
android:layout_marginLeft="275dp"
android:layout_marginTop="-46dp"
android:layout_width="56dp"
android:layout_height="46dp"
android:background="@drawable/share" />
</LinearLayout>
</ScrollView>
</android.support.constraint.ConstraintLayout>
答案 0 :(得分:0)
如果要显示很多报价,建议您将RecyclerView
与RecyclerView.Adapter
一起使用。 LinearLayout
可能会使您的应用程序变慢。
但是,如果您的报价不是那么多,或者您真的想使用LinearLayout
。您可以构建一个listitem_quote.xml
,其中首先包含引号和4个按钮。
然后像这样在LinearLayout
中使用空的activity.xml
。
<ScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content">
<LinearLayout
android:id="@+id/myLinearLayout"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</ScrollView>
在您的活动中,对每个引号使用inflate()
。并将它们添加到您的布局。
onCreate(...){
setContentView(R.layout.activity_main);
myLinearLayout = (LinearLayout) findViewById(R.id.myLinearLayout);
LayoutInflater layoutInflater = LayoutInflater.from(this);
for(...){ // for every quote
// create a view for quote contains buttons
View quoteView = layoutInflater.inflate(R.layout.listitem_quote, null);
TextView tvQuote = quoteView.findViewById(...);
tvQuote.setText(...);
Button btn1 = quoteView.findViewById(...);
btn1.setOnclickListener(...);
myLinearLayout.addView(quote);// add to Linearlayout
}
}
这可以解决问题。
但是,我仍然建议您改用RecyclerView
。
您可以在互联网上找到许多示例。
它看起来更复杂,但是很有用。